L'oggetto scheda di PowerShell rappresenta un ambiente di esecuzione di Windows PowerShell. Esempio: $psISE.CurrentPowerShellTab.

Metodi

Di seguito sono riportati i metodi dell'oggetto scheda di PowerShell.

Invoke(System.Management.Automation.ScriptBlock script)

Esegue lo script specificato nella scheda di PowerShell.

Nota

Questo metodo può essere utilizzato solo in altre schede di PowerShell e non sulla scheda di PowerShell in cui viene eseguito.

script:
Script da eseguire.

# Manually create a second PowerShell tab before running this script. 
# Return to the first tab and type
$secondTab = $psise.PowerShellTabs[1] 
$secondTab.Invoke({dir})

Proprietà

AddOnsMenu

Proprietà di sola lettura che ottiene il menu Componenti aggiuntivi per la scheda di 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

Proprietà booleana di sola lettura che ottiene un vero true quando è possibile richiamare uno script con il metodo 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

Proprietà di sola lettura che ottiene l'oggetto editor del riquadro comandi.

# Gets the Command Pane editor.
$psISE.CurrentPowerShellTab.CommandPane

DisplayName

Proprietà in lettura/scrittura che ottiene o imposta il nome della scheda di PowerShell.

$newTab = $psise.PowerShellTabs.Add()
# Change the DisplayName of the new PowerShell tab. 
$newTab.DisplayName="Brand New Tab"

ExpandedScript

Proprietà booleana in lettura/scrittura che determina se il riquadro di script è espanso o nascosto.

# Toggle the expanded script property to see its effect.
$PSise.CurrentPowerShellTab.ExpandedScript=!$PSise.CurrentPowerShellTab.ExpandedScript

Files

Proprietà di sola lettura che ottiene la raccolta di file di script aperti nella scheda di PowerShell.

$newFile = $psISE.CurrentPowerShellTab.Files.Add()
$newFile.Editor.Text = "a`r`nb" 
# Gets the line count. 
$newFile.Editor.LineCount

Output

Proprietà di sola lettura che ottiene l'editor di output.

# Clears the text in the output.
$psise.CurrentPowerShellTab.output.clear()

Prompt

Proprietà di sola lettura che ottiene il testo del prompt corrente.

# Gets the current prompt text.
$psISE.CurrentPowerShellTab.Prompt

StatusText

Proprietà di sola lettura che ottiene il testo dello stato di PowerShellTab.

# Gets the current status text,
$psISE.CurrentPowerShellTab.StatusText

Vedere anche




Argomenti della Guida