Windows – Change display language in Windows 10 with CMD or PowerShell commands

powershellwindowswindows 10

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.

Best Answer

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

Related Question