Powershell:获取默认系统编码

发布于 2024-10-22 14:55:44 字数 194 浏览 2 评论 0原文

powershell cmdlet out-file 具有开关 -encoding,您可以将其设置为 default。此默认值将使用系统当前 ANSI 代码页的编码。
我的问题是:如何获取 out-file 将与 powershell 一起使用的默认编码的名称?

The powershell cmdlet out-file has the switch -encoding witch you can set to default. This default value will use the encoding of the system's current ANSI code page.
My question is: How can I get the name of this default encoding that out-file will use with powershell?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一个人的旅程 2024-10-29 14:55:44

看看[System.Text.Encoding]::Default,我相信它被用作“默认”。

例如,就我而言:

[System.Text.Encoding]::Default.EncodingName

得到

Cyrillic (Windows)

Take a look at [System.Text.Encoding]::Default, I believe it is used as "default".

E.g. in my case:

[System.Text.Encoding]::Default.EncodingName

gets

Cyrillic (Windows)
嗫嚅 2024-10-29 14:55:44

我使用以下方法解决了 Windows Server 2012 和 zabbix.exe->cmd.exe->Powershell.exe 的问题:

-old string:UserParameter=get.gost-pcidss.csv, powershell.exe -encodedCommand Yw....
-new string:UserParameter=get.gost-pcidss.csv,@chcp 65001>nul && powershell.exe -encodedCommand Yw....

encodedCommand 中,我使用 chcp 65001; 在第一行。

I solved my problem with Windows Server 2012 and zabbix.exe->cmd.exe->Powershell.exe by using the following:

-old string:UserParameter=get.gost-pcidss.csv, powershell.exe -encodedCommand Yw....
-new string:UserParameter=get.gost-pcidss.csv,@chcp 65001>nul && powershell.exe -encodedCommand Yw....

In encodedCommand, I use chcp 65001; at the first line.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文