I have a keyboard which has a left Windows Key and a right context menu key. I would prefer the right context menu key to work as another Windows Key, so I am using a simple AutoHotKey script to "remap" the key as follows:
AppsKey::LWin
This works great for every WinKey + (XYZ) combination such as Win+I, Win+X, and a bunch of other hotkeys that I have mapped with AutoHotKey.
HOWEVER! it does not work with Win+L to lock the console, which is one of the main reasons I want to remap that key. Anyone have any ideas why?
(Note: if this helps anyone, I have instead used the Scroll Lock key as a "lock console" key instead with this script:
scrolllock:: DllCall("LockWorkStation")
but I would still like to know why the Win+L functionality is not working)