Get Windows DisplayLanguage with Powershell

拜拜、爱过 提交于 2021-01-28 12:54:33

问题


I am trying to get Windows Display Language setting via powershell. I tried Get-WinUserLanguageList but this returns the list of all languages. Get-WinSystemLocale and Get-Culture are also not the ones that i am looking for. Is there a way to get current display language?

What i am looking for is this:

Language settings


回答1:


(Get-UICulture).Name

or

$PSUICulture

Official Document Get-UICulture



来源:https://stackoverflow.com/questions/61675257/get-windows-displaylanguage-with-powershell

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!