Showing results for PowerShell 3 - Scripting Blog [archived]

Apr 22, 2013
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Keep Up-to-Date with the 2013 Scripting Games

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to help you stay up-to-date with the 2013 Scripting Games.  How can I use Windows PowerShell to obtain an RSS feed of all 2013 Scripting Games content from the Scripting Guys?  Use the Invoke-RestMethod cmdlet in Windows PowerShell 3.0 and specify the uri for the Scripting Guys 2013 Scripting Games RSS...

Scripting Guy!Windows PowerShellPowerTip
Apr 21, 2013
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Find WMI Classes with a Specific Property

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to find WMI classes that contain a specific property.  How can I use Windows PowerShell to help find a WMI class that contains a specific property?  Use the Get-CimClass cmdlet in Windows PowerShell 3.0, and use the specific property name or a wildcard pattern to help you find the class: Get-CimClass -...

Scripting Guy!Windows PowerShellPowerTip
Feb 24, 2013
Post comments count0
Post likes count0

Weekend Scripter: Two Way-Cool PowerShell Text File Tricks: Tail and Wait

Doctor Scripto
Doctor Scripto

Summary: Microsoft Scripting Guy, Ed Wilson, talks about two way-cool new Windows PowerShell parameters: Tail and Wait. Microsoft Scripting Guy, Ed Wilson, is here. Some things in Windows PowerShell are just so cool that I get all carried away with them and lose focus on whatever I am supposed to be doing. It happens that way sometimes. Luckily, it...

Scripting Guy!Windows PowerShellscripting techniques
Feb 20, 2013
Post comments count0
Post likes count0

PowerTip: Turn Off PowerShell Module Autoload

Doctor Scripto
Doctor Scripto

Summary: Learn how to turn off Windows PowerShell module auto-loading.  I want to disable the Windows PowerShell 3.0 module automatic loading of modules. How do I do this?  Set the value of the $PSModuleAutoloadingPreference automatic variable to none, as shown here. $PSModuleAutoloadingPreference = "none" Note&nb...

Scripting Guy!Windows PowerShellPowerTip
Feb 13, 2013
Post comments count0
Post likes count0

PowerTip: Use PowerShell 3.0 Cmdlet to Find PowerTips and Links

Doctor Scripto
Doctor Scripto

Summary: Use a Windows PowerShell 3.0 cmdlet to find PowerTip articles and the associated links.  How can I use a Windows PowerShell 3.0 cmdlet to find PowerTip articles and associated links to those articles?  Use the Invoke-WebRequest cmdlet and specify the URI for the Hey, Scripting Guy! Blog. Use the link...

Scripting Guy!Windows PowerShellPowerTip