Answer the question
In order to leave comments, you need to log in
How to set input language in Windows Server Core?
I installed the Russian version of Windows Server Core (it came with the server)
By default, the Russian layout was selected.
How to change it to English without digging in the registry? There should be standard tools.
And then every time the layout switch - annoying.
Answer the question
In order to leave comments, you need to log in
Try like this:
# здесь проверяете порядок языков (первый = 0, второй = 1 и т.д. )
$List = Get-WinUserLanguageList
$List
# предположим русский стоит первым в списке
$List[0].InputMethodTips.Clear()
$List[0].InputMethodTips.Add('0409:00000409')
# устанавливаем язык ввода и проверяем
Set-WinUserLanguageList $List -Force
$List
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question