What is the literal escape character in Powershell?

From help about_quoting_rules To make double-quotation marks appear in a string, enclose the entire string in single quotation marks. For example: ‘As they say, “live and learn.”‘ The output from this command is: As they say, “live and learn.” You can also enclose a single-quoted string in a double-quoted string. For example: “As they say, … Read more

One Powershell Script calling another with parameters

EDIT: dot-sourcing the script as shown in my original answer will load the script and variables, objects, functions, etc. into the current session – this might have unintended consequences in certain circumstances. The alternative is to use the & call operator which runs the script in its own scope: The problem is you have a space in your … Read more