Skip to content

Instantly share code, notes, and snippets.

@thiago-rezende
Created March 9, 2020 22:47
Show Gist options
  • Save thiago-rezende/5c5cb3604b8026a9d2c357b0e011d0d5 to your computer and use it in GitHub Desktop.
Save thiago-rezende/5c5cb3604b8026a9d2c357b0e011d0d5 to your computer and use it in GitHub Desktop.
$layout=Read-Host -Prompt "Which layout? (D for DVORAK, Q for QWERTY)"
if ($layout -eq "D")
{
$1 = Get-WinUserLanguageList
$1[0].InputMethodTips[0]="0409:00010409"
Set-WinUserLanguageList -LanguageList $1 -Force
Write-Host "Setting to DVORAK"
}
elseif ($layout -eq "Q")
{
$1 = Get-WinUserLanguageList
$1[0].InputMethodTips[0]="0409:00000409"
Set-WinUserLanguageList -LanguageList $1 -Force
Write-Host "Setting to QWERTY"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment