Summary: Create new lines with Windows PowerShell.
How can I use Windows PowerShell to add a new line between lines for my text output?
Use the `n character, for example:
PS C:\> "string with new line `n in it"
string with new line
in it
Note If you need a carriage return, use `r. For a carriage return and a new line, use `r`n.
How to remember? first r then n like “ReturN”
Could be more self-describing like Return Newline.
`r`n. Works like a charm!! Thanks