Comment turn off the following raccourcis
`win + h`
`win + c`
`win + k`
They are really annoying when I accidentally appuyez sur the wrong one
I'm not trying to modify these raccourci clés to third-party logiciel, [like this](https://superuser.com/a/1147521/1201789)
, Je viens de want to ban them completely, and seulement ban these three.
According vers le instructions [here](https://superuser.com/a/1147521/1201789), modifying le registre seems to have no effect, and my attempts in [another question](https://superuser.com/questions/1742739/how-to-close-windows-11-ad-windows) également tell me that the modified registry sera invalid après restarting the ordinateur.
Comment désactiver some windows11 raccourci clés
Re: Comment désactiver some windows11 raccourci clés
Vous pouvez use the free [AutoHotkey](https://www.autohotkey.com/).
The following script will nullify the clés système-wide:
```
#h::
#c::
#k::
```
Après l'installation AutoHotKey, put the above text in a `.ahk` fichier and
double-cliquez it to test. Vous pouvez stop the script by clic droit on
the green H icône dans le traybar and choosing Exit. To have it run on login,
place it dans le Startup group at
`C:\Users\USER-NAME\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup`.
Vous pouvez further limit the script to a specific executable by
adding an
[#IfWinActive directive](https://www.autohotkey.com/docs/commands/_IfWinActive.htm)
vers le script.
Useful AutoHotkey documentation:
- [List of Keys](https://www.autohotkey.com/docs/KeyList.htm)
- [Hotkeys](https://www.autohotkey.com/docs/Hotkeys.htm)
The following script will nullify the clés système-wide:
```
#h::
#c::
#k::
```
Après l'installation AutoHotKey, put the above text in a `.ahk` fichier and
double-cliquez it to test. Vous pouvez stop the script by clic droit on
the green H icône dans le traybar and choosing Exit. To have it run on login,
place it dans le Startup group at
`C:\Users\USER-NAME\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup`.
Vous pouvez further limit the script to a specific executable by
adding an
[#IfWinActive directive](https://www.autohotkey.com/docs/commands/_IfWinActive.htm)
vers le script.
Useful AutoHotkey documentation:
- [List of Keys](https://www.autohotkey.com/docs/KeyList.htm)
- [Hotkeys](https://www.autohotkey.com/docs/Hotkeys.htm)