If you’re stuck with a keyboard without multimedia keys, it can be incredibly difficult to quickly mute your speakers. Here is a simple AutoHotKey script that maps the “Caps Lock” key as a quick mute keyboard shortcut.
First install AutoHotKey if you haven’t done so already. Then type this command in a file mute.ahk, and double click to execute.
CapsLock:: SoundSet, +1, , mute
Pressing the “Caps Lock” key mutes the speakers, pressing it again restores sound. Here is an executable if you don’t have AutoHotKey installed.