Popup notification for microhone mute

0

1

I need to create a script or a batch file to show a notification-like balloon (or a message or icon) when my microphone is muted and unmuted. I understand this can be achieved by task scheduled but I can't figure out what its event ID or source is.

I am using Nircmd to mute and unmute the mic, but I need a notification for the same.

Samit

Posted 2014-05-22T02:47:13.450

Reputation: 3

Answers

0

Try trayballoon in Nircmd for displaying popup notification. Create a batch file like in example given below and run it.

start "" "path to nircmd.exe" mutesysvolume 0

start "" "path to nircmd.exe" trayballoon "Mic" "mic is on " shell32.dll 10000

Renju Chandran chingath

Posted 2014-05-22T02:47:13.450

Reputation: 1 461