Scripting Blog [archived]

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

Should I use CIM or WMI with Windows PowerShell?

Summary: Richard Siddaway explains the differences between the CIM cmdlets and the WMI cmdlets, and details use cases. (image)  Hey, Scripting Guy! Should I use the WMI cmdlets or the newer CIM cmdlets? —NR (image)  Hello NR, Honorary Scripting Guy, Richard Siddaway, here today filling in for my good friend, The Scripting Guy. The ...

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 = $...