L'objet onglet PowerShell représente un environnement d'exécution Windows PowerShell. Par exemple : $psISE.CurrentPowerShellTab.
Méthodes
Les éléments suivants sont les méthodes de l'objet onglet PowerShell.
Invoke(System.Management.Automation.ScriptBlock script)
Exécute le script indiqué sous l'onglet PowerShell.
Remarque : | |
Cette méthode fonctionne uniquement sous d'autres onglets PowerShell, pas sous l'onglet PowerShell où elle est exécutée. |
- script
- Script à exécuter.
# Manually create a second PowerShell tab before running this script. # Return to the first tab and type $secondTab = $psise.PowerShellTabs[1] $secondTab.Invoke({dir})
Propriétés
AddOnsMenu
Propriété en lecture seule qui obtient le menu Composants additionnels pour l'onglet 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
Propriété booléenne en lecture seule qui obtient la valeur True s'il est possible d'appeler un script avec la méthode Invoke(System.Management.Automation.ScriptBlock script).
# 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
Propriété en lecture seule qui obtient l'objet éditeur du volet de commandes.
# Gets the Command Pane editor. $psISE.CurrentPowerShellTab.CommandPane
DisplayName
Propriété en lecture/écriture qui obtient ou définit le nom de l'onglet PowerShell.
$newTab = $psise.PowerShellTabs.Add() # Change the DisplayName of the new PowerShell tab. $newTab.DisplayName="Brand New Tab"
ExpandedScript
Propriété booléenne en lecture/écriture qui détermine si le volet de script est développé ou masqué.
# Toggle the expanded script property to see its effect. $PSise.CurrentPowerShellTab.ExpandedScript=!$PSise.CurrentPowerShellTab.ExpandedScript
Files
Propriété en lecture seule qui obtient la collection des fichiers de script qui sont ouverts sous l'onglet PowerShell.
$newFile = $psISE.CurrentPowerShellTab.Files.Add() $newFile.Editor.Text = "a`r`nb" # Gets the line count. $newFile.Editor.LineCount
Output
Propriété en lecture seule qui obtient l'éditeur de sortie.
# Clears the text in the output. $psise.CurrentPowerShellTab.output.clear()
Prompt
Propriété en lecture seule qui obtient le texte d'invite actuel.
# Gets the current prompt text. $psISE.CurrentPowerShellTab.Prompt
StatusText
Propriété en lecture seule qui obtient le texte d'état de l'onglet PowerShell.
# Gets the current status text, $psISE.CurrentPowerShellTab.StatusText
Voir aussi