How to remove excess language in languagebar

drKh 1 Reputation point
2022-07-15T11:19:16.343+00:00

I removed the extra language in the language-bar several times, but they are still displayed in Windows 10. What is the solution?

Azure AI Language
Azure AI Language
An Azure service that provides natural language capabilities including sentiment analysis, entity extraction, and automated question answering.
518 questions
Windows for business Windows Client for IT Pros User experience Other
{count} votes

1 answer

Sort by: Most helpful
  1. S.Sengupta 24,476 Reputation points MVP
    2022-07-16T01:37:26.67+00:00

    Open PowerShell as administrator.

    Copy/paste the following command at the command prompt, and then press Enter.

    Get-WinUserLanguageList

    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

    Type Y to confirm setting preferred language and remove extra language.

    0 comments No comments

Your answer

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