Skip to content

Instantly share code, notes, and snippets.

@kaubu
Created July 31, 2021 03:38
Show Gist options
  • Save kaubu/3b950546a7611215e083eeebc3330f7d to your computer and use it in GitHub Desktop.
Save kaubu/3b950546a7611215e083eeebc3330f7d to your computer and use it in GitHub Desktop.
Adds languages to a computer that doesn't have access to administrator or settings
$LanguageList = Get-WinUserLanguageList # Gets language list
# $LanguageList # Prints current info
# Tutorial: https://4sysops.com/archives/adding-and-removing-keyboard-languages-with-powershell/
# Language codes: https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/available-language-packs-for-windows
$LanguageList.Add("el-GR") # Greek
$LanguageList.Add("ja-JP") # Japanese
Set-WinUserLanguageList $LanguageList # Sets language list
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment