News

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 ...
As a beginner to writing scripts with PowerShell, you won't learn the concept of a function until later. Newbies typically learn about PowerShell functions after they've learned what the pipeline is, ...
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 ...
Posey's Tips & Tricks How To Validate Input in PowerShell Functions, Part 2 As Brien demonstrates, string validation is not the only type of input validation that PowerShell can perform. By Brien ...