By default, when you redirect the output of a command to a file or pipe it into something else in PowerShell, the encoding is UTF-16, which isn\'t useful. I\'m looking to ch
To be short, use:
write-output "your text" | out-file -append -encoding utf8 "filename"