It is a known issue that in windows 10 when you decide to add multiple languages you end up with several keyboards that you can not get rid off. A well known solution that I have used in order to have only Greek and English keyboards is to create a powershell script that runs on startup with the following content.
$1 = Get-WinUserLanguageList
$1.RemoveAll( { $args[0].LanguageTag -clike '*' } )
$1.Add("el")
$1.Add("en-US")
Set-WinUserLanguageList $1 -Force
The minor problem that I have is that instead of plain English I want to use the English International qwerty keyboard so that I can add French accents for example. The label of this keyboard when installed on the tray is EN-INTL.
I know that the line I need to modify is $1.Add("en-US")
but I am not aware which attribute to use.
Does anyone has this information to share?
Kind Regards, Alexios