Windows 10 April 2018 Update added an extra Language and I cannot remove it

33,091

Solution 1

Finally found a solution using PowerShell.

You can view your language list with Get-WinUserLanguageList

$1 = New-WinUserLanguageList en-US
Set-WinUserLanguageList $1

now you can check again your new language list with Get-WinUserLanguageList Logoff, Reboot. After rebooting you can add another languages if needed.

Solution 2

Just trying to improve naduvko's answer.

You can directly specify the entire list of languages when running the PowerShell script.

Like this:

$1=New-WinUserLanguageList en-US
$1.Add("nl-NL")
$1.Add("de-DE")
Set-WinUserLanguageList $1

The first one (en-US in this example) will be the default.

Adjust as needed.

(Yes, it's ridiculous that we need to program PowerShell to modify the fricken input languages)

Share:
33,091

Related videos on Youtube

Shevek
Author by

Shevek

I am a .Net developer by profession but have been in tech support in previous incarnations. Interesting fact - back when I used to work tech support for Microsoft there were only 4 of us providing support for every Microsoft Apple Mac product for the whole of the UK. But that was back in the OS 9 days.

Updated on September 18, 2022

Comments

  • Shevek
    Shevek over 1 year

    I have just updated to Windows 10 April 2018 Update (1803 / 17134.1)

    I had my laptop configured completely as UK with only a UK keyboard layout

    Since the update, a US keyboard has been added so I now see the switch icon in my task bar

    enter image description here

    It appears that all the keyboard language settings are now migrated to the new Settings app and no longer in the old Control Panel

    enter image description here

    However, as can be seen from the screenshot above, the Remove button under the newly added US layout is greyed out (as is the UK one)

    How can I remove the US layout?

    UPDATE 1: I just updated my desktop and it hasn't added a US keyboard!

    UPDATE 2: I added a third language (French) and was able to remove it, the button was enabled. The US remove button remained disabled both after adding French and after removing it.

    UPDATE 3: I added another English language (Australian) and this cannot be removed! Button is disabled

    UPDATE 4: I followed this answer except I removed the values from the keys for all users and also the values under the Substitutions key. The task bar switch icon is gone but I still have all 3 languages in Settings still

    • arieljannai
      arieljannai about 6 years
      Have you tried to override it from the Advanced keyboard settings? - you can get to it under Region & language
    • Shevek
      Shevek about 6 years
      @arieljannai the override is set to UK but that does not enable the remove buttons
  • Shevek
    Shevek about 6 years
    I was looking for that but it's no longer there after the update.
  • edixon
    edixon about 6 years
    So what the arrows are there for?
  • Shevek
    Shevek about 6 years
    To set precedence
  • Shevek
    Shevek about 6 years
    I used $1 = New-WinUserLanguageList en-GB for my UK keyboard, it worked! As usual, Micro$oft are migrating stuff but not doing it properly. Thankfully PS is still there using the same background APIs
  • Admin
    Admin almost 6 years
    10.0.16299 is the build number of Windows 10 version 1709, which is not even the subject of this question.
  • Alexius DIAKOGIANNIS
    Alexius DIAKOGIANNIS about 5 years
    This is the ONLY solution that worked for me
  • Admin
    Admin almost 2 years
    For multiple layouts, you can replace the first three lines with $1=New-WinUserLanguageList "en-US,nl-NL,de-DE"