15

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.

asked Mar 30, 2018 at 15:32
0

1 Answer 1

23

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

answered Apr 4, 2018 at 5:42
3
  • 1
    So 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. Commented Apr 6, 2018 at 9:46
  • 5
    Does this change the language permanently or just one session (I would test this myself but I'm not on windows) Commented Jan 25, 2020 at 12:22
  • 1
    if 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 ) Commented Oct 13, 2024 at 4:15

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.