up vote 7 down vote favorite
1
share [g+] share [fb]

Trying to write a PowerShell cmdlet that will mute the sound at start, unless already muted, and un-mute it at the end (only if it wasn't muted to begin with). Couldn't find any PoweShell or WMI object I could use. I was toying with using Win32 functions like auxGetVolume or auxSetVolume, but couldn't quite get it to work (how to read the values from an IntPtr???).

I'm using V2 CTP2. Any ideas folks?

Thanks!

link|improve this question

Interesting question! – Jarrod Dixon Nov 1 '08 at 4:04
feedback

5 Answers

up vote 2 down vote accepted

There does not seem to be a quick and easy way to adjust the volume.. If you have c++ experience, you could do something with this blog post, where Larry Osterman describes how to call the IAudioEndpointVolume interface from the platform api(for Vista, XP might be more difficult from what I've found in a few searches).

V2 does allow you to compile inline code (via Add-Type), so that might be an option.

link|improve this answer
feedback

You could skin the cat another way by simply managing the Windows Audio Service. Stop it to mute, start it to unmute.

link|improve this answer
feedback

If you can do it in C#, you can do it in PowerShell.

link|improve this answer
feedback

Have you seen this question (it reltes to beep, but I'm not sure what sounds you are talking about)?

http://stackoverflow.com/questions/252799/turning-off-the-cmd-window-beep-sound

link|improve this answer
feedback

I didn't find how to do this in PowerShell, but there is a commandline utility called NirCmd that will do the trick by running this command:

C:\utils\nircmd.exe mutesysvolume 2

NirCmd is available for free here: http://www.nirsoft.net/utils/nircmd.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.