Category: Ezine

Ezine 208 PowerShell -Recurse

Introduction to PowerShell Scripting -Recurse When you want a PowerShell command to search sub-directories then -recurse is a life saver.  In other contexts this concept is called iteration, or sub-directory recursion.  One cmdlet which benefits from the -recurse parameter is Get-Childitem. Topics for PowerShell -Recurse Parameter Example Get-ChildItem -recurse Troubleshooting …

Ezine 188 – PowerShell’s Regex

Introduction to PowerShell Regex – Regular Expression Typical jobs for Regex are to find patterns in text, and to replace characters or even whole words.  It’s often when numbers mix with text that confusion occurs, and that’s when you need a PowerShell script to solve the problem.  For example, telephone …