Share via

Remove unremovable keyboard layout

Anonymous
2024-05-26T09:48:05+00:00

Hello,

please help to remove unremovable layout

I do not need English (united kingdom layout), i have removed it from register but i still can't get rid of it

Windows for home | Windows 11 | Input and language

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

Answer accepted by question author

Anonymous
2024-05-26T11:38:08+00:00

ok, i solved the problem with your help.

i run this script :

$LanguageList = Get-WinUserLanguageList
$LanguageList.Add("en-gb")
Set-WinUserLanguageList $LanguageList -Force
then:
$LanguageList = Get-WinUserLanguageList
$Language = $LanguageList | where LanguageTag -eq "en-gb"
$LanguageList.Remove($Language)
Set-WinUserLanguageList $LanguageList -Force

then found it in registry and deleted it forever, thank god it gone. it can't now come back, cuz it do not exist, done.

Image

Was this answer helpful?

0 comments No comments

Answer accepted by question author

Ramesh 176.5K Reputation points Volunteer Moderator
2024-05-26T11:14:07+00:00

Please try this from admin PowerShell.

$LanguageList = Get-WinUserLanguageList
$LanguageList.Add("en-gb")
Set-WinUserLanguageList $LanguageList -Force

Then, open Settings, go to Language, and remove English (UK) from there.

Src: SuperUser

Also, what does it show if you run: dism /online /get-intl

Was this answer helpful?

0 comments No comments

12 additional answers

Sort by: Most helpful
  1. Ramesh 176.5K Reputation points Volunteer Moderator
    2024-05-26T09:58:56+00:00

    Run:

    • set-winuserlanguagelist en-US, ru

    Press Enter.

    Press Y.

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2024-05-26T09:53:49+00:00

    There is no third language

    Was this answer helpful?

    0 comments No comments
  3. Ramesh 176.5K Reputation points Volunteer Moderator
    2024-05-26T09:49:33+00:00

    The two PowerShell commands in the following thread should fix the issue.

    How to remove the Unknown Locale(qaa-latn) language - Microsoft Community: https://answers.microsoft.com/en-us/windows/forum/all/how-to-remove-the-unknown-localeqaa-latn-language/25c9aa40-656f-418b-8f50-ca767d070205

    Was this answer helpful?

    0 comments No comments