Ah ok, if its not something relatively easy to implement, or requires something like elevating privileges. than I fully understand it not being implemented
Im sure ill find another way around this problem, likely via Auto hotkey or the like
(setting [win key] to do nothing in classic shell, adding a new hotkey for the menu, and triggering that hotkey via ahk, when a shortpress is detected)
UPDATE: here is the script, the shortcut to open classic shell is now alt+ctrl+r (and this script sends that if the LWin key is held less than .2 seconds)
Otherwise it holds down the RWin key until you release the LWin key. (after the initial .21 seconds)
Heres the code if anyone is interested
Code:
<<$LWin::
KeyWait, LWin, T0.01
If ErrorLevel
{
KeyWait, LWin, T.2 ; Wait .25 to see if key is held
If !ErrorLevel ; No timeout, so key was released
{
Send ^!r
Return
}
Send {RWin down}
KeyWait, LWin ; Wait for button to be released
Send {RWin up}
Return
}
Return