在Windows Server 2012上安装更多区域性 [英] Installing more cultures on Windows Server 2012

查看:102
本文介绍了在Windows Server 2012上安装更多区域性的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在Windows 8.1机器上,我看到的可用区域性比Windows Server 2012机器上的区域性更多:791 vs378。举一个具体的例子,服务器计算机缺少 en-HK文化。



这是我用来枚举它们的测试代码:

  foreach(CultureInfo.GetCultures(System.Globalization.CultureTypes.AllCultures).OrderBy(ci => ci.Name)中的var ci)
{
Console.WriteLine( {0}({1} ),ci.Name,ci.EnglishName);
}

问题:如何安装更完整的Windows Server 2012上的区域性列表,以便与Windows 8.1上的可用列表相匹配?

解决方案

解决方法是升级Windows Server 2012的操作系统。运行系统的计算机。如此处所述...



https://docs.microsoft.com/en-gb/openspecs/windows_protocols/ms-lcid/a9eac961-e77d-41a6-90a5-ce1a8b0cdb9c



zh-cn在版本8.1中受支持



版本8.1与 Windows 8.1和Windows Server相关2012 R2。所有更高版本均受支持。



因此,是的,您将在Windows 8.1上看到en-HK,并在服务器上安装R2 Service Pack。 p>

On a Windows 8.1 machine, I'm seeing many more available cultures than on a Windows Server 2012 machine: 791 vs 378. To give a specific example, the server machine is missing the 'en-HK' culture.

Here is the test code I'm using to enumerate them:

foreach (var ci in CultureInfo.GetCultures(System.Globalization.CultureTypes.AllCultures).OrderBy(ci => ci.Name))
{
    Console.WriteLine("{0} ({1})", ci.Name, ci.EnglishName);
}

Question: how can I install the more complete culture list on Windows Server 2012 so that it matches what's available on Windows 8.1?

解决方案

The fix is to upgrade the OS of the machine running your system. As documented here...

https://docs.microsoft.com/en-gb/openspecs/windows_protocols/ms-lcid/a9eac961-e77d-41a6-90a5-ce1a8b0cdb9c

en-HK is supported in "Release 8.1"

Release 8.1 correlates to "Windows 8.1 and Windows Server 2012 R2. Supported in all later versions."

So yes you will see en-HK on Windows 8.1 to see it on your server install the R2 service pack.

这篇关于在Windows Server 2012上安装更多区域性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆