Scripting Blog [archived]

Formerly known as the "Hey, Scripting Guy!" blog

PowerTip: Hide a PowerShell ISE add-on

Summary: Learn how to programmatically hide a Windows PowerShell ISE add-on. (image)  How can I use code to hide one of the Windows PowerShell ISE add-ons? (image)  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 = $...

PowerTip: Update a PowerShell module

Summary: Learn how to update an installed Windows PowerShell module. (image)  I used Install-Module to install a Windows PowerShell module, but how can I update it? (image)  Use the Update-Module cmdlet, for example: Here are a couple of other examples: find-module *ise-preview | Update-Module Update-Module *ise-preview (image...