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
  • 1
    This question should include more details and clarify the problem. Please edit your question instead of submitting a comment. – Ramhound May 23 '20 at 20:12
  • I posted the images, but they did not go to the post, i don't know why! – Joseph May 23 '20 at 20:31
  • Possible duplicate of [this](https://superuser.com/questions/1092246/how-to-prevent-windows-10-from-automatically-adding-keyboard-layouts-i-e-us-ke?rq=1) question – Ramhound May 23 '20 at 20:45
  • What is the preload? I don't understand what I have to do! – Joseph May 23 '20 at 21:16
  • Does this answer your question? [How to prevent Windows 10 from automatically adding keyboard layouts (i.e. US keyboard)](https://superuser.com/questions/1092246/how-to-prevent-windows-10-from-automatically-adding-keyboard-layouts-i-e-us-ke) – music2myear May 24 '20 at 01:27
  • Delete the English keyboard from the control panel – DDS May 28 '20 at 12:15

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
  • 1
  • 1
  • 4
  • 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