How to remove a keyboard layout which isn't showing up in the settings [Solution]

S

sergiu marcov

Delete all language from Language settings ,leave just English(United States)Open PowerShell as Administrator:Right-click on the Start button and select Windows PowerShell (Admin).Verify Current Keyboard Layouts:Run the following command : "Get-ItemProperty -Path "HKCU:\Keyboard Layout\Preload" Will be something like this: 1 : 00000409 2 : 00000XXXThe id of English(United States) is 1 : 00000409 leave it alone , we need number 2Run the following command : Remove-ItemProperty -Path "HKCU:\Keyboard Layout\Preload" -Name "PLACE NUMBER" -ErrorAction Silen

Continue reading...
 
Back
Top Bottom