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.sstatic.net/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