News

Proper Naming of a Function Take a look at all of the core PowerShell cmdlets and you will noticed something right away: all of them follow a naming convention of Verb-SingularNoun. As important as ...
Most eager PowerShell users over-build their functions or scripts to do too many things. You'd get more reuse from old code if your code was more granularly and tightly scoped.
Posey's Tips & Tricks How To Validate Input in PowerShell Functions, Part 1 If your automated script takes action based on a value, it's critical to make sure the value is correct. Good thing ...