原始链接:PowerShell 技能连载 - 修正 ISE 的编码
发表日期:2014-08-14
适用于所有 PowerShell 版本
当您在 ISE 编辑器中运行一个控制台程序时,非标准字符,例如“ä”或“ß”将会显示不正常。要修正 ISE 和隐藏的控制台之间通信的编码,请使用这段代码:- # Repair encoding. This REQUIRES a console app to run first because only
- # then will ISE actually create its hidden background console
-
- $null = cmd.exe /c echo
- [Console]::OutputEncoding = [System.Text.Encoding]::UTF8
-
- # Now all is fine
-
- cmd.exe /c echo ÄÖüäöüß
复制代码 本文国际来源:Correcting ISE Encoding |