Last active
November 8, 2021 16:05
-
-
Save uadev/1cf3f0ee98ece1e26c2fb753a196afce to your computer and use it in GitHub Desktop.
Workaround to fix extra languages.
This file contains 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
$langlist = New-WinUserLanguageList en-US | |
$langlist.Add('uk') | |
$langlist[1].InputMethodTips.Clear() | |
# 0422:00020422 - Default Ukrainian | |
# 0422:A0000422 - Unicode 2.0 https://r2u.org.ua/wiki/keyboard/UkrainianUnicode | |
$langlist[1].InputMethodTips.Add('0422:A0000422') | |
Set-WinUserLanguageList $langlist -Force |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment