问题
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:
回答1:
(Get-UICulture).Name
or
$PSUICulture
Official Document Get-UICulture
来源:https://stackoverflow.com/questions/61675257/get-windows-displaylanguage-with-powershell