S
S
Sergey2021-04-16 11:42:03
System administration
Sergey, 2021-04-16 11:42:03

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

1 answer(s)
R
Roman Bezrukov, 2021-04-16
@bk0011m

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 question

Ask a Question

731 491 924 answers to any question