-
-
Save xoner/4671514 to your computer and use it in GitHub Desktop.
$OutputEncoding = New-Object -typename System.Text.UTF8Encoding | |
[Console]::OutputEncoding = New-Object -typename System.Text.UTF8Encoding |
I prefer writing it this way:
[Console]::OutputEncoding = [Text.UTF8Encoding]::UTF8
Another way is to use chcp.com:
& "$env:windir\system32\chcp.com" 65001
@Tiliavir $OutputEncoding
controlls how text is passed through pipes https://blogs.msdn.microsoft.com/powershell/2006/12/11/outputencoding-to-the-rescue/
Just leaving this as an alternative if it is required to start a Powershell childprocess instantly as UTF8 (including pipes) without running an external script:
Powershell.exe -NoExit -Command "$OutputEncoding = [Console]::OutputEncoding = [Text.UTF8Encoding]::UTF8"
Add $env:LC_ALL='C.UTF-8'
to your $profile
.
"$OutputEncoding = [Console]::OutputEncoding = [Text.UTF8Encoding]::UTF8"
This works...
Add
$env:LC_ALL='C.UTF-8'
to your$profile
.
👍
"$OutputEncoding = [Console]::OutputEncoding = [Text.UTF8Encoding]::UTF8" works for me.
I have tried:
- "$PSDefaultParameterValues = @{'Out-File:Encoding' = 'utf8'}" didn't work
- "$PSDefaultParameterValues['Out-File:Encoding'] = 'utf8'" didn't work.
[Console]::OutputEncoding = [Text.UTF8Encoding]::UTF8
God bless your soul!
$PSDefaultParameterValues['Out-File:Encoding'] = 'utf8'
worked for me for PowerShell 5.1, as per this doc
Ended up using $PSDefaultParameterValues['*:Encoding'] = 'utf8'
to set utf-8 to "to change the default encoding for all cmdlets that have the Encoding parameter". Also put it in the $profile
file for persistence.
You can also add [Console]::OutputEncoding = [Text.UTF8Encoding]::UTF8
to the start of your powershell profile script.
Notepad $profile
If the file doesn't exist, create one
add [Console]::OutputEncoding = [Text.UTF8Encoding]::UTF8
as the first line of the file`
save
restart powershell
first line is irrelevant, right?