Showing archive results for 2012

Dec 1, 2012
Post comments count0
Post likes count0

PowerTip: Find Updatable WMI Classes

Doctor Scripto

Summary: Learn how to use Windows PowerShell 3.0 to easily find WMI classes you can update.  How can I find WMI classes that support updating? Use the Get-Cimclass cmdlet and a wild card for the WMI class name. Then, look for the class qualifier of supportsupdate, as shown here. Get-CimClass -ClassName * -QualifierName supp...

Scripting Guy!Windows PowerShellPowerTip
Dec 1, 2012
Post comments count0
Post likes count0

Weekend Scripter: Run All Cmdlets from a Module

Doctor Scripto

Summary: Microsoft Scripting Guy, Ed Wilson, talks about running all Get cmdlets from a specific Windows PowerShell module. Microsoft Scripting Guy, Ed Wilson, is here. Today, the Scripting Wife and I are once again on a train—this time we are heading to Warsaw to visit Windows PowerShell MVP Bartek Bielawski. Bartek won the Scripting Games t...

Scripting Guy!Windows PowerShellscripting techniques
Nov 30, 2012
Post comments count0
Post likes count0

PowerTip: Find All Modules on a System by Using PowerShell

Doctor Scripto

Summary: Learn how to find all modules on a system by using Windows PowerShell.  How can I find all of the modules on my system by using Windows PowerShell?  Use the Get-Command cmdlet and specify all of the modules. Pipe the results to the Group-Object cmdlet, and sort the results to make it easier to read, as sh...

Scripting Guy!Windows PowerShellPowerTip
Nov 30, 2012
Post comments count0
Post likes count0

Use PowerShell and WMI to Find Wireless Keyboard & Mouse

Doctor Scripto

Summary: Microsoft Scripting Guy, Ed Wilson, talks about using Windows PowerShell and WMI to find a wireless keyboard or mouse attached to a system. Microsoft Scripting Guy, Ed Wilson, is here. Yesterday, we had a great time at the Windows PowerShell user group meeting at the Microsoft Office in Munich (actually just outside of Munich). It was grea...

Scripting Guy!Windows PowerShellscripting techniques
Nov 29, 2012
Post comments count0
Post likes count0

PowerTip: Start All Virtual Machines on Remote Servers Running Hyper-V

Doctor Scripto

Summary: See how to start all virtual machines on remote servers running Hyper-V by using Windows PowerShell.  How can I start all virtual machines on several remote servers running Hyper-V by using Windows PowerShell?  Use the pattern Get-VM | Start-VM but with the Get-VM cmdlet to specify an array of servers running Hyper...

Scripting Guy!Windows PowerShellPowerTip