Win-Key in keyboard shortcut combo?

 From:  MO (MO_TE)
11072.4 In reply to 11072.1 
Hi Ad
If you want to remap your "win" key, you have some external options :
Using a "key-mapping" software (see link below)
https://alternativeto.net/category/utilities/key-mapping/

or if you are a "windows" user :
install "autohotkey" software (It's a free/simple scripting language)
Make a new script (right click => new => autohotkey script)
Open it with notepad and copy this inside your script:
code:
#IfWinActive, ahk_exe MoI.exe
RWin::CTRL
LWin::LShift

save and Run it! :)

this code remaps the left "win" key to left shift and the right "win" key to CTRL key. (just when "moi" window is active)

If you want to modify the script you can use these links as well:
https://www.autohotkey.com/docs/v1/Hotkeys.htm
https://www.autohotkey.com/docs/v1/misc/Remap.htm