Modified: 01/19/2015

Variable Interpolation, or Two Types of Strings

Strings with single quotes (') are literal strings, meaning there are no special characters; every character in the string will output as itself. Strings with double quotes (") in powershell will expand variables and escape characters inside the string; this is referred to as interpolation.

Continue reading...