Strings:
*Multiline string
There are multiple ways to create a multiline string in PowerShell:
NewLine-environment variable to insert the systems “newline” value)
"Hello`r`nWorld"
"Hello{0}World" -f [environment]::NewLine
"Hello
World"
@"
Hello
World
"@