Como remover algum layout de teclado no Windows 10 usando o PowerShell?

2

Estou curioso para saber como remover um layout de teclado no Windows 10 Professional usando o PowerShell?

    
por Vlastimil 21.02.2018 / 17:48

1 resposta

2

Como remover um layout de teclado no Windows 10 Pro usando o PowerShell?

Você pode usar o Set-WinUserLanguageList .

Sometimes I need to type in German or in Russian. Often enough – every week I type something. Meanwhile, it bugs me to find the right layout every time.

And since I now prefer PowerShell to cmd.exe, I had a thought – I should add these layouts as I need them. So, now I have two files:

addDe.ps1:

$1 = Get-WinUserLanguageList
$1.Add('de-DE')
Set-WinUserLanguageList $1 -Force

remDe.ps1:

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

Fonte Adicionando / removendo layouts de teclado com o PowerShell

Leitura Adicional

Set-WinUserLanguageList

    
por 21.02.2018 / 18:09