Add Language Switching by Left-CTRL + Left-Shift to Settings

ExDeF

Member
Messages
78
Reaction score
10
Hi!
Add language switching by LCtl+LShift to Settings or Tamplate.
p.s. I know you can make a cmd file, but I would like to have a setting or template in the program itself.
 
For now, you can apply the keyboard shortcut change by importing a HKCU reg file under Registry.

Code:
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Keyboard Layout\Toggle]
"Hotkey"=dword:00000002

NTLite will apply the update to the Default User's profile. Unlike other examples of HKCU keys, new user provisioning for W10/11 doesn't appear to block changes for "HCKU\Keyboard Layout".
 
Adding a reg file like that doesn't work!
I add a cmd file to the Post-Install > After logon:
@Echo off
Reg.exe add "HKCU\Keyboard Layout\Toggle" /v "Language Hotkey" /t REG_SZ /d "2" /f
Reg.exe add "HKCU\Keyboard Layout\Toggle" /v "Hotkey" /t REG_SZ /d "2" /f
Reg.exe add "HKCU\Keyboard Layout\Toggle" /v "Layout Hotkey" /t REG_SZ /d "1" /f
exit /b
 
Last edited:
Back
Top