Comment swap the Windows and Control keys in Windows?
Comment swap the Windows and Control keys in Windows?
I'm used to a Mac keyboard and that means my finger expect to trouvez le touche de raccourci to the left of the spacebar. Comment puis-je turn the Windows key--command (⌘) key on a Mac keyboard) into the Control key and vice versa?
Re: Comment swap the Windows and Control keys in Windows?
Quite simply, use this [AutoHotKey](https://www.autohotkey.com/) script. (Tutorial on how to create a script [here](https://www.autohotkey.com/docs/Tutorial.htm#s12))
```
RCtrl::RWin
RWin::RCtrl
LCtrl::LWin
LWin::LCtrl
```
Works for all but CtrlAltDel.
A workaround for allowing simultaneous CtrlAlt, is to map left to right, and right to left (as opposed to left-left, right-right) i.e..
```
LAlt::RCtrl
RAlt::LCtrl
RCtrl::LAlt
LCtrl::RAlt
```
Disclaimer: this answer may no longer be relevant in modern Windows 10/11 versions as it was written originally for Windows 7.
```
RCtrl::RWin
RWin::RCtrl
LCtrl::LWin
LWin::LCtrl
```
Works for all but CtrlAltDel.
A workaround for allowing simultaneous CtrlAlt, is to map left to right, and right to left (as opposed to left-left, right-right) i.e..
```
LAlt::RCtrl
RAlt::LCtrl
RCtrl::LAlt
LCtrl::RAlt
```
Disclaimer: this answer may no longer be relevant in modern Windows 10/11 versions as it was written originally for Windows 7.