Skip to content

Instantly share code, notes, and snippets.

@abakum
Last active October 12, 2023 13:37
Show Gist options
  • Save abakum/c2f63de84d46dcd055fc19a1e7524eb0 to your computer and use it in GitHub Desktop.
Save abakum/c2f63de84d46dcd055fc19a1e7524eb0 to your computer and use it in GitHub Desktop.
Switch Keyboard Layouts To Default
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