本文介绍了我可以知道[cultureinfo]::InstalledUICulture和Get-uculture in PowerShell之间的区别吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我可以知道PowerShell中的[cultureinfo]::InstalledUICulture和Get-uculture有什么区别吗?

我在Windows 10中尝试了[cultureinfo]::InstalledUICulture,运行良好,但在Windows 7中不是这样。所以我在PowerShell中得到了Get-uculture命令,但不确定它是否会产生与[cultureinfo]::InstalledUICulture相同的结果。

推荐答案

我在Windows7上运行的是WMF5.1,但我看到的唯一区别是[System.Globalization.CultureInfo]::InstalledUICultureIsReadOnly设置为$true,而Get-UICulture设置为$false

这意味着它们之间的区别是:

[System.Globalization.CultureInfo]::New('en-US')
[System.Globalization.CultureInfo]::ReadOnly([System.Globalization.CultureInfo]::New('en-US'))

或:

[System.Globalization.CultureInfo]::New([System.Globalization.CultureInfo]::InstalledUICulture)
[System.Globalization.CultureInfo]::ReadOnly([System.Globalization.CultureInfo]::InstalledUICulture)
然而,从内部看,Get-UICulture似乎是一个相当无意义的命令。它真正做的只是返回(Get-Host).CurrentUICulture$host.CurrentUICulture,这两个函数都将IsReadOnly设置为$false

这篇关于我可以知道[cultureinfo]::InstalledUICulture和Get-uculture in PowerShell之间的区别吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 07:08