Scripting Blog [archived]

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

Regular Expressions (REGEX): Basic symbols

Welcome back to the RegEx guide. Last post we talked a little bit about the basics of RegEx and its uses. I mentioned the most important thing is to understand the symbols. Today we'll ease in with some of the basics to get us going, but later we will expand on these and see some other options we have. ย is used to represent any single ...

PowerShell PowerTip: What is the point of Out-Variable?

A lot of times people see others using the common parameter -OutVariableย instead of the best practice $var = <value>. This leads to a lot of folks wondering why OutVariableย  exists. The real use for OutVariable is to save your data off, while still letting it get sent along the output stream. What this means is that you could use it...