minus-squareTheShortViking@alien.topBtoTech Support•Looking for a one-button Mute Shortcut for my Windows 11 Desktop PC / Microsoft 2000 KeyboardlinkfedilinkEnglisharrow-up1·1 year agoUsing autohotkey i believe you can do this with just two lines of code: :*?:whatever letter/symbol:: SoundSetMute -1 This uses hotstrings, and the SoundSetMute command. You can have whatever letter/symbol you want, or have a combination e.g. type “mute” to mute. If you want a key combination e.g. CTRL+M you can see docs for hotkeys here and just exchange the top line. linkfedilink
Using autohotkey i believe you can do this with just two lines of code:
This uses hotstrings, and the SoundSetMute command. You can have whatever letter/symbol you want, or have a combination e.g. type “mute” to mute.
If you want a key combination e.g. CTRL+M you can see docs for hotkeys here and just exchange the top line.