Here's how to remove the UK language on your settings. Please follow the steps below :
- From the Start menu, search for powershell.
- Right-click Windows Powershell in the search results and choose Run as administrator.
- Type or copy/paste each of the following commands at the command prompt, and then press Enter. In the following commands, <languagecode> is the language tag the customer is trying to remove, such as en-in for English (India).
Get-WinUserLanguageList
(Take note of the LanguageTag for the language the customer is trying to remove.)
$LangList = Get-WinUserLanguageList $MarkedLang = $LangList | where LanguageTag -eq "<languagecode>" $LangList.Remove($MarkedLang)
Set-WinUserLanguageList $LangList -Force
I tried this way and it success
have a nice day