0

I am trying to remove QAA (unknown locale - US keyboard; see below image).However, I don't see it exists in the language settings. Can anyone please suggest the solutin to solve this issue? Thank you.

enter image description here

1 Answers1

0

I found this after a quick search.

Launch PowerShell as an Administrator, then type the following:

$LanguageList = Get-WinUserLanguageList
$LanguageList.Add("qaa-latn")
Set-WinUserLanguageList $LanguageList -Force

Then it should come up in Windows Settings and you can remove it from there.

chimpdaddy
  • 16
  • 1