2

I am in need of a bat or powershell command to change the language switching shortcut in Windows (for example from Caps Lock to Left Shift + Left Alt. Is it possible to do something like this?

1 Answers1

0

After looking into this answer (and some others), this PowerShell snippet worked for me:

$wshell = New-Object -ComObject wscript.shell
$wshell.SendKeys("%+()")

It sends Alt + Shift.

tolache
  • 599