Scripting Blog [archived]

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

Combine PowerShell Modules to Avoid Writing Scripts

Summary: Learn how to combine Windows PowerShell modules to save time and reduce scripting overhead.   Microsoft Scripting Guy Ed Wilson here. One of the cool things about Windows PowerShell modules is that they are easy to share. In addition, because the code is packaged as a module, one automatically knows what to do with the module, ...

Don't Write Scripts, Write PowerShell Functions

Summary: There are times when piling Windows PowerShell cmdlets together becomes a bit cumbersome, so instead of writing a script, consider functions. Weekend Scripter Microsoft Scripting Guy, Ed Wilson, is here. There are times, when I want to do things that are a bit more complicated than piecing together cmdlets in a straightforward manner...