Created
March 9, 2020 22:47
-
-
Save thiago-rezende/5c5cb3604b8026a9d2c357b0e011d0d5 to your computer and use it in GitHub Desktop.
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
| $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