How can I use either CMD or PowerShell to change the display language only, for all users in a Windows 10 Pro?
I would rather avoid using any external ps1 file or batch file. I have seen some solutions that require you to use XML files or a PS1 scripts. But I would prefer if there is a cmdlet or just a couple of commands that can do this without having to download any script files.
1 Answer 1
Consider using the Set-WinSystemLocale and/or
Set-WinUserLanguageList PowerShell cmdlets right from the PowerShell command line or IDE with no script and with a couple simple commands.
Commands
Note: Be sure to replace en-US with the language/locale for your need.
Set-WinSystemLocale en-US
Set-WinUserLanguageList en-US
Further Resources
-
1So I tested this in a VM and it seems to work very well. Only caveat is that the language you add will have to be downloaded from the Control Panel after the commands which sort of defeats the purpose of one-liners I guess.Arete– Arete2018年04月06日 09:46:30 +00:00Commented Apr 6, 2018 at 9:46
-
5Does this change the language permanently or just one session (I would test this myself but I'm not on windows)stevec– stevec2020年01月25日 12:22:09 +00:00Commented Jan 25, 2020 at 12:22
-
1if anyone want to add multiple language, for example, zh-CN and en-US, you can run
Set-WinUserLanguageList en-US,zh-CN(use comma as separator )qz_newbie– qz_newbie2024年10月13日 04:15:35 +00:00Commented Oct 13, 2024 at 4:15