Share via

keyboard language keeps changing

Anonymous
2018-07-04T10:11:44+00:00

Since the last windows update my keyboard language keeps changing.

That problem did not occur before the update but I can not get rid of it now.

system language is English but keyboard is German (for practical reasons).

I used override for default input method and German is selected but it still keeps going back to English mostly after restarts but not always…

Any solutions?

Windows for home | Windows 10 | Settings

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

5 answers

Sort by: Most helpful
  1. Anonymous
    2018-07-04T13:24:04+00:00

    It just lists the four available languages. equally... and let´s me change between them

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2018-07-04T13:14:50+00:00

    What happens if you press Windows key + Space bar> Does it set a default language?

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2018-07-04T13:10:55+00:00

    Thank you for your prompt replies, I am not sure if my problem has been understood properly:

    I have (and want):

    1. English as a display language.
    2. German as a keyboard language.

    I don´t want to remove a language, I just want Windows to accept that I want to use two different languages. One as display language (English) and a different language as a keyboard language (German).

    This used to work before the update, but now the keyboard language keeps jumping back to English.

    Was this answer helpful?

    0 comments No comments
  4. Anonymous
    2018-07-04T13:04:17+00:00

    If you add a secondary language to Windows 10 version 1803 that shares the same base language as the Windows display language, neither language can be removed.

    For example: If English (United Kingdom) is the current Windows display language, and you then add English (India) to the Preferred languages list, afterwards neither English (United Kingdom) nor English (India) can be removed from the Preferred languages list.

    Note: The most notable effect of having multiple related languages in the Preferred languages list is additional entries in the text input selector. You can remove unwanted language list entries using these steps:

    1. From the Start menu, search for powershell.
    2. Right-click Windows Powershell in the search results and choose Run as administrator.
    3. Type or copy/paste the following command at the command prompt, and then press Enter.

    Get-WinUserLanguageList

    After typing this command, make note of the “LanguageTag” listed for the language you wish to remove, as you will need it in the next step.

    1. Type or copy/paste each of the following commands at the command prompt, and then press Enter. In the following commands, instead of typing <languagecode>, replace it with the language tag you wish to remove, such as en-in for English (India).

    $LangList = Get-WinUserLanguageList

    $MarkedLang = $LangList | where LanguageTag -eq "<languagecode>"

    $LangList.Remove($MarkedLang)

    Set-WinUserLanguageList $LangList -Force

    Was this answer helpful?

    0 comments No comments
  5. DaveM121 891.6K Reputation points Independent Advisor
    2018-07-04T10:16:54+00:00

    Hi mkmkmkmk87, there is a known bug in the 1803 version of Windows 10.

    Please try this workaround to set your preferred input language:

    Right click your Start Button, choose Powershell (admin)

    Run this command to get a list of installed languages on your PC

    Get-WinUserLanguageList

    Note down the LanguageTag of your preferred language

    If say, your preferred language is US English, run this command and hit Enter:

    $1 = New-WinUserLanguageList en-US

    Then run this command to set the order of installed input languages

    Set-WinUserLanguageList $1

    Close Powershell and restart your PC

    Was this answer helpful?

    0 comments No comments