25 February 2016

Quickly Mute or Un-mute volume using VBS

Hello reader,

I find clicking on Volume icon on taskbar and wait few seconds to appear and clicking again on mute button was so time consuming.

So i did some Googling and found this awesome codes.

1. Copy code below and paste in Notepad.
   
Set WshShell = CreateObject("WScript.Shell")
WshShell.SendKeys(chr(173))
 
 

2. Save notepad as Mute.VBS to your desktop. I place mine near to Volume icon for easy access.

3. Simply double click VBS file to mute and un-mute.


Find from this original post.
http://www.dostips.com/forum/viewtopic.php?t=995

No comments: