Forum Discussion
How do I remove "English (United Kingdom)"?
- Aug 02, 2021
I'm very sorry SamirGunic but I have no more ideas.
Such setting must be hidden somewhere but not in the usual places.
Clean install or live with this annoyance.
I just had this issue with my new laptop.
I managed to fix it using this video:
https://www.youtube.com/watch?v=2y3Atx2wmD8
Basically, open powershell, enter the command:
$1 = New-WinUserLanguageList en-US
Then enter the command:
Set-WinUserLanguageList $1
This basically creates a new list of languages for your user containing just en-US, then it sets it to the current user. After running this command, the united kingdom language was gone and I just needed to manually enter my own languages.
- KarlstenatorOct 07, 2024Copper ContributorLegend, thank you NandoKools. That PowerShell command did the trick. All the other methods of jumping through various language and keyboard prompts and settings simply didn't resolve the issue - but the PowerShell method instantly corrected the issue.
- novaka1710Feb 16, 2023Copper Contributor
This worked for me as well! Thanks for the tip. To add, this solution can be found in the manual accessible by this command:
Get-Help New-WinUserLanguageList -Full
Look for example 1:
$1 = New-WinUserLanguageList en-US $1.Add("fr-FR") Set-WinUserLanguageList $1
Using language codes you can build a list of what you need.