posts

Renaming Script Variables

Often, when you start writing a PowerShell script, you use temporary (dirty) variable names that later you'd like to polish. Renaming script...

Using the ISE Debugger

ISE has a simple yet effective debugger built-in that you can use to step through your code. The debugger does require that you save your script...

Finding Matching Brackets

Sometimes, in larger PowerShell scripts it is hard to find the corresponding opening or closing bracket or brace. One thing you can do, of course,...