< Back

Remove-PSISETab

Mon Jan 13, 2020 6:16 am

NAME Remove-PSISETab



SYNOPSIS

Remove a powershell tab.





SYNTAX

Remove-PSISETab [-Name] <String> [-Force <SwitchParameter>] [<CommonParameters>]



Remove-PSISETab [-Number] <Int32> [-Force <SwitchParameter>] [<CommonParameters>]



Remove-PSISETab [-Current] <SwitchParameter> [-Force <SwitchParameter>] [<CommonParameters>]





DESCRIPTION

Remove a powershell tab awithin ISE.





PARAMETERS

-Name <String>

The name of the tab to remove.



Required? true

Position? 0

Default value

Accept pipeline input? false

Accept wildcard characters? false



-Force [<SwitchParameter>]

Remove the tab even if it has unsaved files.



Required? false

Position? named

Default value

Accept pipeline input? false

Accept wildcard characters? false



-Number <Int32>

The number of the tab to remove.



Required? true

Position? 0

Default value

Accept pipeline input? false

Accept wildcard characters? false



-Current [<SwitchParameter>]

Remove the current tab.



Required? true

Position? 0

Default value

Accept pipeline input? false

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS









OUTPUTS









NOTES









-------------------------- Example 1 --------------------------



Remove-PSISETab -Name MyTab



This command will remove the MyTab tab.







-------------------------- Example 2 --------------------------



Remove-PSISETab -Current



This command will remove the current tab.









RELATED LINKS