Tag Archives: Powershell

Find Pending Updates via the SCCM Client Agent With PowerShell

One of the nice things about SCCM is that you can use it along with WSUS to push out software updates for your operating system. an even better thing is that the API is accessible via PowerShell. There are several … Continue reading

Posted in powershell, scripts | Tagged , , | 12 Comments

Setting Up a Windows PowerShell Help Repository

With the help files not available by default in PowerShell V3, you must now use Update-Help to download the help files needed to properly view help for each cmdlet. The best thing about this is that you will always have … Continue reading

Posted in powershell, V3 | Tagged , , , , | 2 Comments

Run PowerShell in Version 2 While PowerShell V3 RC Is Installed

Many of you have downloaded the latest build of PowerShell V3 (currently in RC). While PowerShell V3 is amazing, you might have wondered how you can run some scripts or other things with PowerShell V2 that are just not working … Continue reading

Posted in powershell, V3 | Tagged , , | 4 Comments

Quick-Hits: How Long Did That Last Command Take?

Have you ever ran a command or script and wanted to know how long it takes to complete but forgot to wrap the code or script with Measure-Command? Well, you are in luck because you can take a look at … Continue reading

Posted in powershell | Tagged , , | 1 Comment

Filter Using Parameters Instead of Where-Object When Possible

This was a post I intended on writing during/after the 2012 Scripting Games, but just never got around to finishing it up. While it is great to know for the games itself, it also applies to everyday scenarios for folks … Continue reading

Posted in powershell | Tagged , , , | 7 Comments