PowerTip: Hide a PowerShell ISE add-on
Summary: Learn how to programmatically hide a Windows PowerShell ISE add-on. How can I use code to hide one of the Windows PowerShell ISE add-ons? Use the Windows PowerShell ISE object model, and set the IsVisible property of the add-on to False, for example: $psISE.PowerShellTabs.VerticalAddOnTools.Item(0).isvisible = $false