PowerShellTab 对象The PowerShellTab Object
本文内容
PowerShellTab 对象代表 Windows PowerShell 运行时环境。
方法Methods
调用(脚本)Invoke( Script )
在 Windows PowerShell ISE 2.0 和更高版本中受支持。
在 PowerShell 选项卡中运行给定的脚本。
备注
此方法仅适用于其他 PowerShell 选项卡,不适用于运行它的 PowerShell 选项卡。它不返回任何对象或值。如果代码修改任何变量,则这些更改将仍保存在根据其调用该命令的选项卡上。
Script - 要运行的脚本块的 System.Management.Automation.ScriptBlock 或字符串。
# Manually create a second PowerShell tab before running this script.
# Return to the first PowerShell tab and type the following command
$psISE.PowerShellTabs[1].Invoke({dir})
InvokeSynchronous( Script, [useNewScope], millisecondsTimeout )InvokeSynchronous( Script, [useNewScope], millisecondsTimeout )
在 Windows PowerShell ISE 3.0 和更高版本中受支持,但不存在于早期版本中。
在 PowerShell 选项卡中运行给定的脚本。
备注
此方法仅适用于其他 PowerShell 选项卡,不适用于运行它的 PowerShell 选项卡。运行脚本块,并且从该脚本返回的任何值将返回到从中调用该命令的运行环境。如果此命令采用更长时间才能运行比millesecondsTimeout的值指定,则该命令将失败并出现异常:运算超时。
Script - 要运行的脚本块的 System.Management.Automation.ScriptBlock 或字符串。
[useNewScope] - 可选的布尔值,默认值为 $true,如果设置为 $true,则会新建作用域以在其中运行命令。它不会修改该命令指定的 PowerShell 选项卡的运行时环境。
[millisecondsTimeout] - 可选整数,默认值为 500。如果在指定时间内未完成命令,则该命令将生成 TimeoutException 并显示消息“操作已超时。”
# Create a new PowerShell tab and then switch back to the first
$psISE.PowerShellTabs.Add()
$psISE.PowerShellTabs.SetSelectedPowerShellTab($psISE.PowerShellTabs[0])
# Invoke a simple command on the other tab, in its own scope
$psISE.PowerShellTabs[1].InvokeSynchronous('$x=1', $false)
# You can switch to the other tab and type '$x' to see that the value is saved there.
# This example sets a value in the other tab (in a different scope)
# and returns it through the pipeline to this tab to store in $a
$a = $psISE.PowerShellTabs[1].InvokeSynchronous('$z=3;$z')
$a
# This example runs a command that takes longer than the allowed timeout value
# and measures how long it runs so that you can see the impact
Measure-Command {$psISE.PowerShellTabs[1].InvokeSynchronous('sleep 10', $false, 5000)}
“属性”Properties
AddOnsMenuAddOnsMenu
在 Windows PowerShell ISE 2.0 和更高版本中受支持。
只读属性,可获取 PowerShell 选项卡的“加载项”菜单。
# Clear the Add-ons menu if one exists.
$psISE.CurrentPowerShellTab.AddOnsMenu.SubMenus.Clear()
# Create an AddOns menu with an accessor.
# Note the use of "_" as opposed to the "&" for mapping to the fast key letter for the menu item.
$menuAdded = $psISE.CurrentPowerShellTab.AddOnsMenu.SubMenus.Add('_Process', {Get-Process}, 'Alt+P')
# Add a nested menu.
$parentAdded = $psISE.CurrentPowerShellTab.AddOnsMenu.SubMenus.Add('Parent', $null, $null)
$parentAdded.SubMenus.Add('_Dir', {dir}, 'Alt+D')
# Show the Add-ons menu on the current PowerShell tab.
$psISE.CurrentPowerShellTab.AddOnsMenu
CanInvokeCanInvoke
在 Windows PowerShell ISE 2.0 和更高版本中受支持。
只读布尔属性,如果可以使用 Invoke( Script ) 方法调用脚本,则返回 $true 值。
# CanInvoke will be false if the PowerShell
# tab is running a script that takes a while, and you
# check its properties from another PowerShell tab. It is
# always false if checked on the current PowerShell tab.
# Manually create a second PowerShell tab before running this script.
# Return to the first tab and type
$secondTab = $psISE.PowerShellTabs[1]
$secondTab.CanInvoke
$secondTab.Invoke({sleep 20})
$secondTab.CanInvoke
ConsolepaneConsolepane
在 Windows PowerShell ISE 3.0 和更高版本中受支持,但不存在于早期版本中。在 Windows PowerShell ISE 2.0 中,这命名为 CommandPane。
获取“控制台”窗格 editor 对象的只读属性。
# Gets the Console Pane editor.
$psISE.CurrentPowerShellTab.ConsolePane
DisplayNameDisplayName
在 Windows PowerShell ISE 2.0 和更高版本中受支持。
读写属性,可获取或设置 PowerShell 选项卡上显示的文本。默认情况下,选项卡命名为“PowerShell #”,其中 # 表示数字。
$newTab = $psISE.PowerShellTabs.Add()
# Change the DisplayName of the new PowerShell tab.
$newTab.DisplayName = 'Brand New Tab'
ExpandedScriptExpandedScript
在 Windows PowerShell ISE 2.0 和更高版本中受支持。
读写布尔属性,可确定“脚本”窗格是展开还是隐藏的。
# Toggle the expanded script property to see its effect.
$psISE.CurrentPowerShellTab.ExpandedScript = !$psISE.CurrentPowerShellTab.ExpandedScript
文件Files
在 Windows PowerShell ISE 2.0 和更高版本中受支持。
只读属性,可获取 PowerShell 选项卡中打开的脚本文件集合。
$newFile = $psISE.CurrentPowerShellTab.Files.Add()
$newFile.Editor.Text = "a`r`nb"
# Gets the line count
$newFile.Editor.LineCount
输出Output
此功能存在于 Windows PowerShell ISE 2.0 中,但已在更高版本的 ISE 中删除或重命名。在更高版本的 Windows PowerShell ISE 中,你可以将 ConsolePane 对象用于相同的目的。
只读属性,可获取当前编辑器的“输出”窗格。
# Clears the text in the Output pane.
$psISE.CurrentPowerShellTab.output.clear()
提示Prompt
在 Windows PowerShell ISE 2.0 和更高版本中受支持。
只读属性,可获取当前提示文本。注意:Prompt 函数可以被用户的配置文件覆盖。如果结果不止一个简单的字符串,则此属性不会返回任何内容。
# Gets the current prompt text.
$psISE.CurrentPowerShellTab.Prompt
ShowCommandsShowCommands
在 Windows PowerShell ISE 3.0 和更高版本中受支持,但不存在于早期版本中。
读写属性,指示当前是否显示“命令”窗格。
# Gets the current status of the Commands pane and stores it in the $a variable
$a = $psISE.CurrentPowerShellTab.ShowCommands
# if $a is $false, then turn the Commands pane on by changing the value to $true
if (!$a) {$psISE.CurrentPowerShellTab.ShowCommands = $true}
StatusTextStatusText
在 Windows PowerShell ISE 2.0 和更高版本中受支持。
只读属性,可获取 PowerShellTab 状态文本。
# Gets the current status text,
$psISE.CurrentPowerShellTab.StatusText
HorizontalAddOnToolsPaneOpenedHorizontalAddOnToolsPaneOpened
在 Windows PowerShell ISE 3.0 和更高版本中受支持,但不存在于早期版本中。
只读属性,指示水平“加载项”工具窗格当前是否打开。
# Gets the current state of the horizontal Add-ons tool pane.
$psISE.CurrentPowerShellTab.HorizontalAddOnToolsPaneOpened
VerticalAddOnToolsPaneOpenedVerticalAddOnToolsPaneOpened
在 Windows PowerShell ISE 3.0 和更高版本中受支持,但不存在于早期版本中。
只读属性,指示竖直“加载项”工具窗格当前是否打开。
# Turns on the Commands pane
$psISE.CurrentPowerShellTab.ShowCommands = $true
# Gets the current state of the vertical Add-ons tool pane.
$psISE.CurrentPowerShellTab.HorizontalAddOnToolsPaneOpened