Share via

How to remove Phantom Keyboard Layout

Jin Huang 0 Reputation points
2025-09-24T07:29:10.1+00:00

Hello.
I have encountered phantom keyboard layout.

In the settings, there is only 3 languages. The English (Malaysia) is using the US layout.

User's image

However, the taskbar shows a fourth language which is English (UK) with UK layout.

User's image

This heavily affects me due to the extra language disrupt my Alt+Shift sequence.

I have tried a lot of methods to remove it. I tried the followings.

  1. Add then remove the language. I added the English (UK) in the language setting then removing it. It temporarily solves the issue. But after a while it returns again.
  2. Set the system locale After some research, some suggested to change the locale settings, which I did as follows User's image User's image I also copy the current setting into the welcome screen and new user accounts and then reboot the system. However, it did not permanently resolve the issue. The phantom keyboard layout still returns.
  3. Then Copilot suggested to delete the UK layout registry key (00000809) in registry editor. But when I open the regedit. There is no UK layout present in the editor. HKEY_CURRENT_USER\Keyboard Layout\Preload User's image I even checked in HKEY_USERS.DEFAULT\Control Panel\International\User Profile User's image But the UK layout is still there in the taskbar. Despite these methods, the phantom English (UK) layout keeps haunting me. Please help.
Windows for home | Windows 11 | Input and language
0 comments No comments

5 answers

Sort by: Most helpful
  1. Anonymous
    2025-09-24T09:39:43.0433333+00:00

    Hi Jin Huang, please go to Settings > Accounts > Windows backup > Click Remember my preferences > Uncheck "Language preferences" > Sign out and sign back in to apply the change.

    You can also use command by right-click Start > Windows PowerShell (Admin) and paste the following and press Enter: Set-WinUserLanguageList en-MY -Force

    Was this answer helpful?

    1 person found this answer helpful.

  2. Pauli O 15,465 Reputation points Volunteer Moderator
    2025-10-24T20:33:59.3566667+00:00

    This issue is caused by bug in Notepad and Microsoft is already released fixed Notepad version to insiders in Release Preview channel so you can assume it will be almost ready to be released to public versions as well.

    image

    Was this answer helpful?


  3. Andre' Melancia 46 Reputation points
    2025-10-03T13:17:48+00:00

    I'm having the exact same problem. Different base languages but the same "English (UK)" phantom keyboard layout keeps appearing and something swaps to it.

    Incredible disruptive and time consuming.

    One more Windows 11 bug that's been around for months, and even after an update keeps appearing.

    Was this answer helpful?


  4. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.

    1 deleted comment

    Comments have been turned off. Learn more

  5. Anonymous
    2025-09-25T03:00:47.6433333+00:00

    Hi Jin Huang, here is the second workaround, it might be complicated though.

    Open PowerShell in administrator then run this command:

    $LangList = Get-WinUserLanguageList $LangList[0].InputMethodTips
    

    It should display this. The number might be varied but it should start with 0809 which is UK: 

    044e:00000409 (English in Malaysia)
    0809:00000409 (English in UK)
    ... (the rest)
    

    Then run the next one to remove the UK keyboard:

    $LangList[0].InputMethodTips.Remove("0809:00000409")
    

    Optional: Run this command also to remove the UK language:

    $LangList = Get-WinUserLanguageList $LangList = $LangList | Where-Object { $_.LanguageTag -ne "en-GB" } Set-WinUserLanguageList $LangList -Force
    

     

     

    Was this answer helpful?


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.