Rebind Microsoft Sculpt Mobile Mouse (Windows Key)

key-bindingmouse

using the microsoft sculpt mobile mouse, by downloading the Mouse and Keyboard Center , i can rebind the mouse keys, but the WINDOWS key i can't change it, and that is the only key i may(and want) to rebind because i have it (twice) on the keyboard, and i can't find an option to change it, am i missing something? Or is there any way to bypass this limitation

enter image description here

i found that the keys are saved here: HKEY_CURRENT_USER\Software\Microsoft\IntelliPoint\ModelSpecific\5025\EventMapping\4

but i've been trying to change the [4](4 is middle mouse button) but i didn't found any for the windows key

Best Answer

After a bunch of digging around, I finally found a link on AutoHotKey with precisely this issue. I've tried the suggestion and it seems to work well.

Here is my autohotkey script that I am using to rebind my Windows button to be the back button, and the back button to be a forward button.

RWin::Send {Browser_Back}
XButton1::Send {Browser_Forward}
Related Question