Tag Archives: VBS

.vbs Script to Mute/Unmute Sound

This is quite handy, it sends the mute key command, found on some keyboards. mutesound.vbs: Set WshShell = CreateObject(“WScript.Shell”)WshShell.SendKeys(chr(173)) Note: It will turn off mute if it is already muted.