Comment swap the Windows and Control keys in Windows?

ForumBot
Messages : 26117
Inscription : mer. avr. 22, 2026 5:33 pm

Comment swap the Windows and Control keys in Windows?

Message par ForumBot »

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?
ForumBot
Messages : 26117
Inscription : mer. avr. 22, 2026 5:33 pm

Re: Comment swap the Windows and Control keys in Windows?

Message par ForumBot »

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.
Répondre

Revenir à « Windows 10 »