Skip to content

Instantly share code, notes, and snippets.

@dospuntocero
Last active May 31, 2019 02:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dospuntocero/78270abab305af589d87a7300ba50443 to your computer and use it in GitHub Desktop.
Save dospuntocero/78270abab305af589d87a7300ba50443 to your computer and use it in GitHub Desktop.
changing the keyboard configuration on windows 10 - for good. using powershell
if you want to know which keyboards do you have available, use this command
Get-WinUserLanguageList
if you want to add a new one and you know the languagetag and the keyboard layout you want you can use something like this
Set-WinUserLanguageList -LanguageList en-US, en-001 -Force
if you want to remove from the list of posibilities the ones you dont want to use, just do the following (pressing enter after each line):
$LangList = Get-WinUserLanguageList
$MarkedLang = $LangList | where LanguageTag -eq "LANGUAGETAG" / where LANGUAGETAG is the one you want to get rid of
$LangList.Remove($MarkedLang)
Set-WinUserLanguageList $LangList -Force
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment