0

Hi can someone help me clearing this language from my computer? That ENG language. I tried everything but nothing works.

https://prnt.sc/smimag

This is my language configuration on preferences. Sorry for being in portuguese, but as you can see, I only have portuguese but on the task bar it has english too!

https://i.stack.imgur.com/A51cd.png

Joseph
  • 101

1 Answers1

0

You can try it with Powershell

$1 = Get-WinUserLanguageList
$1.RemoveAll( { $args[0].LanguageTag -clike 'de*' } )
Set-WinUserLanguageList $1 -Force

I copied it from here: 1297069

Update from 2020-05-28:

Start a powershell terminal as admin. Add Portuguese as your only language.

Powershell

Set-WinUserLanguageList -Force 'pt-pt'

With the command Get-WinUserLanguageList you get your current languages / keyboard layouts

Registry

I found on Stackoverflow also an answer. The way over the registry Computer\HKEY_CURRENT_USER\Keyboard Layout\Preload works quiet well.

KargWare
  • 101
  • You really should have flagged this question as a duplicate. You didn't even modify the command to remove the proper keyboard layout for the author fo this question. – Ramhound May 26 '20 at 23:11
  • In the registery I have 1 and Predefinition what do I have to do? – Joseph Jun 16 '20 at 10:23