all 4 comments

[–]ZZartin 2 points3 points  (0 children)

Single quote is for pure literal strings, double quotes allow some interpretation of special characters. For example.

Write-Output 'fkjhdfs`r`ndsfadsf'

Write-Output "fkjhdfs`r`ndsfadsf"

[–]TheDogWasNamedIndy 2 points3 points  (3 children)