RokeJulianLockhart Asked: 2024-07-13 23:25:38 +0800 CST2024-07-13 23:25:38 +0800 CST 2024-07-13 23:25:38 +0800 CST 如何在 Windows 10 和 Windows 11 中以编程方式禁用或启用“Beta:使用 Unicode UTF-8 提供全球语言支持”? 772 这个超级用户的回答很好地解释了这个功能是什么,但重要的是它可以使用子窗口中的复选框来启用intl.cpl: 我如何以编程方式实现这一目标? windows-10 1 个回答 Voted Best Answer RokeJulianLockhart 2024-07-13T23:25:38+08:002024-07-13T23:25:38+08:00 当我写这个问题时,我注意到我似乎几年前就已经回答过这个问题了learn.microsoft.com: #!/usr/bin/env -S pwsh #```PS1 #Requires -RunAsAdministrator #Requires -PSEdition Core #Requires -Version 7.4 #``` #Reg2CI (c) 2022 by Roger Zander If ([OperatingSystem]::IsWindows() -Eq $True) { If((Test-Path -LiteralPath 'HKLM:\SYSTEM\CurrentControlSet\Control\Nls\CodePage') -NE $True) { New-Item "HKLM:\SYSTEM\CurrentControlSet\Control\Nls\CodePage" -Force } New-ItemProperty -LiteralPath 'HKLM:\SYSTEM\CurrentControlSet\Control\Nls\CodePage' -Name 'ACP' -Value 65001 -PropertyType 'String' -Force New-ItemProperty -LiteralPath 'HKLM:\SYSTEM\CurrentControlSet\Control\Nls\CodePage' -Name 'OEMCP' -Value 65001 -PropertyType 'String' -Force New-ItemProperty -LiteralPath 'HKLM:\SYSTEM\CurrentControlSet\Control\Nls\CodePage' -Name 'MACCP' -Value 65001 -PropertyType 'String' -Force } 大概我已经解决了这个问题github.com/rzander/Reg2CI/blob/master/README.md(正如SU 的这个回答所解释的那样)。如果有人能做得更好,请这样做。
当我写这个问题时,我注意到我似乎几年前就已经回答过这个问题了
learn.microsoft.com
:大概我已经解决了这个问题
github.com/rzander/Reg2CI/blob/master/README.md
(正如SU 的这个回答所解释的那样)。如果有人能做得更好,请这样做。