PowerShell 选项卡对象体现了 Windows PowerShell 执行环境。例如 $psISE.CurrentPowerShellTab。
方法
下面是 PowerShell 选项卡对象的方法。
Invoke(System.Management.Automation.ScriptBlock script)
在 PowerShell 选项卡中执行给定的脚本。
注意: | |
此方法仅适用于其他 PowerShell 选项卡,不适用于运行该方法所在的 PowerShell 选项卡。 |
- script:
- 要执行的脚本。
# Manually create a second PowerShell tab before running this script. # Return to the first tab and type $secondTab = $psise.PowerShellTabs[1] $secondTab.Invoke({dir})
属性
AddOnsMenu
只读属性,用于获取 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
CanInvoke
只读的布尔型属性,如果可用 Invoke(System.Management.Automation.ScriptBlock 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
Commandpane
只读属性,用于获取命令窗格编辑器对象。
# Gets the Command Pane editor. $psISE.CurrentPowerShellTab.CommandPane
DisplayName
读/写属性,用于获取或设置 PowerShell 选项卡的名称。
$newTab = $psise.PowerShellTabs.Add() # Change the DisplayName of the new PowerShell tab. $newTab.DisplayName="Brand New Tab"
ExpandedScript
布尔型的读/写属性,用于确定展开还是隐藏脚本窗格。
# Toggle the expanded script property to see its effect. $PSise.CurrentPowerShellTab.ExpandedScript=!$PSise.CurrentPowerShellTab.ExpandedScript
Files
只读属性,用于获取在 PowerShell 选项卡中打开的脚本文件的集合。
$newFile = $psISE.CurrentPowerShellTab.Files.Add() $newFile.Editor.Text = "a`r`nb" # Gets the line count. $newFile.Editor.LineCount
Output
只读属性,用于获取输出编辑器。
# Clears the text in the output. $psise.CurrentPowerShellTab.output.clear()
Prompt
只读属性,用于获取当前的提示文本。
# Gets the current prompt text. $psISE.CurrentPowerShellTab.Prompt
StatusText
只读属性,用于获取 PowerShellTab 状态文本。
# Gets the current status text, $psISE.CurrentPowerShellTab.StatusText
另请参阅