Created
February 22, 2018 09:31
-
-
Save anjannath/e158de2229d66c0f51d306db09aba93e to your computer and use it in GitHub Desktop.
Steps to change the locale in windows using powershell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Steps to change the system language: | |
-------------------------------------------------- | |
$Language can be "jp-JP", "as-IN", etc.. Need to install the language pack before you can use it, | |
to install language pack use commands: | |
```powershell | |
$LP = Get-MUIPackagePath $Language $(Get-OSCurrentVersion).Version | |
Add-WindowsPackage -Online -PackagePath $LP.Path | |
Restart-Computer -Force -Confirm | |
``` | |
--------------------------------------------------- | |
```powershell | |
Set-Culture $Language | |
Set-WinSystemLocale $Language | |
Set-WinHomeLocation $(Get-GeoId($Language)) | |
Set-WinUserLanguageList $SetLanguage -force | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment