Last active
October 12, 2023 13:37
-
-
Save abakum/c2f63de84d46dcd055fc19a1e7524eb0 to your computer and use it in GitHub Desktop.
Switch Keyboard Layouts To Default
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
Add-Type -AssemblyName 'System.Windows.Forms' | |
$WinUserLanguageList=Get-WinUserLanguageList | |
if ( [System.Windows.Forms.InputLanguage]::CurrentInputLanguage.Culture.Name -ne $WinUserLanguageList[0].LanguageTag ) { | |
Set-WinUserLanguageList $WinUserLanguageList -Force | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment