Remove English (US) Keyboard from Windows 11 Taskbar

Published by Nyau Wai Hoe - Updated on

This guide will show you a powerful PowerShell command line that you can use to remove the English (United States) keyboard layout, or literally any other keyboard layout, that you want from Windows 11 so that it won’t show up as an option in the list of keyboard layouts again.

Update: I noticed that some readers came here with the same question but with a totally different intention, where they want to just get rid of the language bar from the taskbar, but not the keyboard language from the list of languages. I’ve added a section to show you how to do it.

How to Remove English US Keyboard from Windows 11 Taskbar

Also see: How to Remove Keyboard Layout From Windows 11

What is the problem?

There are many users who use a language other than English as their main language in Windows, and it doesn’t necessarily have to be English. There are also other users who use English layout of a different region, for example, English (UK), English (Australia), English (Singapore), or English (Malaysia), and want to get rid of the additional English (US) keyboard layout that they are not going to use.

Delete English United States and use other language

One problem is that, you can’t seem to do it via the Language & region settings because usually the English language pack is not removable, even when other language has already been set as the default system language.

Remove button grayed out keyboard language pack Windows 11

Another problem is that the language pack whose keyboard layout you want to remove isn’t even listed in the list of installed languages.

And one additional common issue is that even if you’ve removed the English (US) language pack or keyboard layout in the traditional way, it might still come back eventually, often after a restart or upon running certain application or game (because some apps tend to add the US keyboard layout itself whenever you run them).

To fix this, you can run a PowerShell script to remove the English (US) keyboard layout and its language pack completely from your Windows 11 PC. You can also use the same script to remove any other language pack you want.

Might be useful: How to Change Default System Language in Windows 11

How to remove English (US) or any other keyboard layout from Windows 11

We’ll skip the normal method as most of the time it doesn’t work, or even if it does, the en-US keyboard layout will eventually come back again. What we’ll show you is a block of command lines that you can run in an elevated PowerShell to remove a language pack from the OS.

Please note that you’ll need to have at least one other language pack installed for Windows to use as your default system language before you can remove the default English (US) keyboard layout.

  1. Go to the Start menu, search for PowerShell, right-click it and run it as administrator. You’ll need administrative privileges to successfully execute the command lines.Windows 11 PowerShell Run as administrator
  2. In the PowerShell window, copy and paste the following script, and then press Enter to run it. You don’t need to copy line-by-line; just copy the entire block and paste it into the PowerShell window.
    # Get the current language list
    $LangList = Get-WinUserLanguageList
    
    # Remove en-US from the list
    $LangList = $LangList | Where-Object { $_.LanguageTag -ne "en-US" }
    
    # Apply the updated list
    Set-WinUserLanguageList -LanguageList $LangList -Force

    PowerShell command to remove English US keyboard layout from Windows 11 Taskbar

  3. After successfully running the command, restart your computer for the changes to take effect.

If you want to remove another language instead, you’ll need to replace the “en-US” with the language tag that you want to remove. The following is a list of some of the most common language tags being used:

Common language tags for English:

  • en-USEnglish (United States)
  • en-GBEnglish (United Kingdom)
  • en-CAEnglish (Canada)
  • en-AUEnglish (Australia)
  • en-INEnglish (India)
  • en-NZEnglish (New Zealand)
  • en-IEEnglish (Ireland)
  • en-ZAEnglish (South Africa)

Language tags for Japanese:

  • ja-JPJapanese (Japan)

Language tags for Chinese:

  • zh-CNChinese (Simplified, China)
  • zh-HKChinese (Traditional, Hong Kong SAR)
  • zh-TWChinese (Traditional, Taiwan)
  • zh-SGChinese (Simplified, Singapore)

Other common language tags:

Spanish:

  • es-ESSpanish (Spain)
  • es-MXSpanish (Mexico)
  • es-ARSpanish (Argentina)
  • es-COSpanish (Colombia)

French:

  • fr-FRFrench (France)
  • fr-CAFrench (Canada)
  • fr-BEFrench (Belgium)
  • fr-CHFrench (Switzerland)

German:

  • de-DEGerman (Germany)
  • de-ATGerman (Austria)
  • de-CHGerman (Switzerland)

Russian:

  • ru-RURussian (Russia)

Arabic:

  • ar-SAArabic (Saudi Arabia)
  • ar-EGArabic (Egypt)
  • ar-AEArabic (United Arab Emirates)

Linked issue: Can’t login to Windows, Password in another language

How to remove the “ENG US” keyboard language setting from the taskbar

If what you’re looking for is a way to remove the keyboard language bar from the taskbar, so that the input method switching icon (which usually shows up as “ENG US“) no longer appears on the taskbar again, but you’re not trying to remove any language pack or keyboard layout, here’s how you can do it.

  1. Open Settings by pressing Win + i.
  2. Go to “Time & language“, and select “Typing“.Windows 11 Time and language Typing Settings
  3. Select “Advanced keyboard settings“.Windows 11 Typing Advanced keyboard settings
  4. Enable the checkbox for “Use the desktop language bar when it’s available“.How to hide the ENG US language bar from Taskbar Windows 11

The keyboard layout icon should now be gone from your taskbar. No restart is needed for the changes to take effect. To undo it and have the language bar show up on the taskbar again, repeat the same steps and re-enable the “Use the desktop language bar when it’s available” setting.


Nyau Wai Hoe
Nyau Wai Hoe is the Founder and Chief Editor of WindowsDigitals.com. With a degree in software engineering and over 12 years of experience in the tech support industry, Nyau has established himself as an expert in the field, with a primary focus on the Microsoft Windows operating system. As a tech enthusiast, he loves exploring new technologies and leveraging them to solve real-life problems.

Share via
Copy link