Skip to content

Instantly share code, notes, and snippets.

@anjannath
Created February 22, 2018 09:31
Show Gist options
  • Save anjannath/e158de2229d66c0f51d306db09aba93e to your computer and use it in GitHub Desktop.
Save anjannath/e158de2229d66c0f51d306db09aba93e to your computer and use it in GitHub Desktop.
Steps to change the locale in windows using powershell
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