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?
Asked
Active
Viewed 1,186 times
2
ymdred16
- 73
1 Answers
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