En este tema se muestra la jerarquía de objetos que forman parte de Entorno de scripting integrado (ISE) de Windows PowerShell. La acción de hacer clic en un objeto le lleva a la documentación de referencia para la clase en el espacio de nombres Microsoft.PowerShell.Host.ISE que define el objeto.
Objeto $psISE
El objeto $psISE es el objeto raíz de la jerarquía de objetos de Entorno de scripting integrado (ISE) de Windows PowerShell. Situado en el nivel superior, expone los cuatro objetos siguientes:
$psISE.CurrentFile
$psISE.CurrentPowerShellTab
$psISE.Options
$psISE.PowerShellTabs
$psISE.CurrentFile
El objeto $psISE.CurrentFile permite disponer de los objetos siguientes para scripting:
- $psISE.CurrentFile.DisplayName
- $psISE.CurrentFile.Editor El objeto $psISE.CurrentFile.Editor permite, a su vez, disponer de estos objetos para scripting:
- $psISE.CurrentFile.Encoding
- $psISE.CurrentFile.FullPath
- $psISE.CurrentFile.IsSaved
- $psISE.CurrentFile.IsUntitled
$psISE.CurrentPowerShellTab
El objeto $psISE.CurrentPowerShellTab permite disponer de los objetos siguientes para scripting:
- $psISE.CurrentPowerShellTab.AddOnsMenu El objeto $psISE.CurrentPowerShellTab.AddOnsMenu permite disponer de los objetos siguientes para scripting:
- $psISE.CurrentPowerShellTab.CanInvoke
- $psISE.CurrentPowerShellTab.CommandPane El objeto $psISE.CurrentPowerShellTab.CommandPane permite disponer de los objetos siguientes para scripting:
- $psISE.CurrentPowerShellTab.DisplayName
- $psISE.CurrentPowerShellTab.ExpandedScript
- $psISE.CurrentPowerShellTab.Files
- $psISE.CurrentPowerShellTab.Output El objeto $psISE.CurrentPowerShellTab.Output permite disponer de los objetos siguientes para scripting:
- $psISE.CurrentPowerShellTab.Prompt
- $psISE.CurrentPowerShellTab.StatusText
$psISE.Options
El objeto $psISE.Options permite disponer de los objetos siguientes para scripting:
- $psISE.Options.CommandPaneBackgroundColor
- $psISE.Options.CommandPaneUp
- $psISE.Options.DebugBackgroundColor
- $psISE.Options.DebugForegroundColor
- $psISE.Options.DefaultOptions
- $psISE.Options.ErrorBackgroundColor
- $psISE.Options.ErrorForegroundColor
- $psISE.Options.FontName
- $psISE.Options.Fontsize
- $psISE.Options.OutputPaneBackgroundColor
- $psISE.Options.OutputPaneTextForegroundColor
- $psISE.Options.OutputPaneTextBackgroundColor
- $psISE.Options.ScriptPaneBackgroundColor
- $psISE.Options.ScriptPaneForegroundColor
- $psISE.Options.SelectedScriptPaneState
- $psISE.Options.ShowToolBar
- $psISE.Options.ShowWarningBeforeSavingOnRun
- $psISE.Options.ShowWarningForDuplicateFiles
- $psISE.Options.TokenColors
- $psISE.Options.UseLocalHelp
- $psISE.Options.VerboseBackgroundColor
- $psISE.Options.VerboseForegroundColor
- $psISE.Options.WarningBackgroundColor
- $psISE.Options.WarningForegroundColor
Vea también