20
6
Is it possible to change the volume in Windows XP via the command line?
20
6
Is it possible to change the volume in Windows XP via the command line?
31
NirCmd is an application that does that and more.
Example of use:
nircmd.exe changesysvolume 2000
nircmd.exe changesysvolume -5000
nircmd.exe setsysvolume 65535
nircmd.exe mutesysvolume 1
nircmd.exe mutesysvolume 0
There's user-friendly interactive script I made for simplification that depends on nircmd
.
2This apparently also works on Windows 7, as a few now deleted non-answers pointed out earlier. – Daniel Beck – 2010-12-17T14:35:48.990
2Was hoping there was a standard Windows method, but this looks very handy. Will accept this if no-one supplies one in the next day or two. Thanks, Harry. – underskor – 2009-09-16T12:02:07.000
NirCmd looks very cool and very handy. Thanks for the tip. – pave – 2009-09-16T13:08:58.990
NirCmd is also great for getting a laptop to mute on every logon - this way it won't accidentally keep making the "ding" sound on the train (which I don't notice because of the headphones until an embarrassing moment when someone gets annoyed enough to point it out.....) – RomanSt – 2010-01-10T15:08:14.150
8
Make the JavaScript files:
echo var oShell = new ActiveXObject("WScript.Shell"); >> volup.js<BR>
echo oShell.SendKeys(String.fromCharCode(0xAF)); >> volup.js
echo var oShell = new ActiveXObject("WScript.Shell"); >> voldown.js<BR>
echo oShell.SendKeys(String.fromCharCode(0xAE)); >> voldown.js
echo var oShell = new ActiveXObject("WScript.Shell"); >> togglemute.js<BR>
echo oShell.SendKeys(String.fromCharCode(0xAD)); >> togglemute.js
Show the volume control, so you can see what you're doing:
sndvol
(or maybe sndvol32)
Change the volume:
cscript voldown.js
Note: I've had this approach work reliably on machines that I've attempted to use it on. Helen's answer to Sibo Lin's StackOverflow question about this indicates muting isn't reliable, but volume-changing may not be quite as reliable. I suspect that the level of reliability may be different on different machines. This approach is using the technology of mimicking a keystroke, and specifically a volume control key on an enhanced media keyboard. At the time that Windows started supporting this, such a keyboard was basically a little-used frivolous feature that offered functionality that was previously available only with custom drivers. It wouldn't surprise me if this code was less polished, and less likely to work on some of the various (perhaps older) hardware that's out there. All that said, I haven't had troubles with it myself.
Credits:
One caveat: This question has been tagged with Windows XP. I just tried this in Windows 10. I know I've used this in Windows 7 (at least enough to test it out). As I first started to see Microsoft's built-in support for these enhanced keyboards around the time of Windows ME, I would think this is likely to work well win WinXP too. I don't recall if I actually tested this with that operating system. Still, if this approach doesn't work well, I don't expect it to cause problematic side effects.
Thanks for sharing those keycodes! Since my computer already has python installed, I was able to use this on the command line: pip install SendKeys
(pure Python package for emulating keystrokes), followed by python -c "from SendKeys import playkeys; playkeys([(0xAE, True), (0xAE, False)])"
, which emulates a single press and release of the volume key. To emulate 100 distinct presses (for example), you can insert * 100
after the closing ]
and before the final )
. – ArtOfWarfare – 2017-03-01T15:04:25.873
8
Having read these posts and having looked for alternatives I decided to write my own command line utility, called SetVol, to set the volume. It works a little more simply than what is described in some of the other posts on this page, here are some examples that you would enter at the command prompt:
setvol 75
setvol -10
setvol +12
setvol mute
setvol unmute
There are other options too. I've released it as freeware, and you are welcome to visit www.rlatour.com/setvol for more information and to download a copy.
Enjoy
This is brilliant. Thanks very much for this tool ! – cssyphus – 2018-10-23T16:12:28.790
Thanks!! However, I REALLY need this for setting the mic volume. (I'm using Java but I don't expect JavaSound to do this.) Can it be added? – Stefan Reich – 2018-11-30T16:46:17.517
Awesome, thank you! Feature Request for future: ability to return current volume level as an errorlevel
(so I can save current setting to later restore it) – ashleedawg – 2018-12-13T17:48:57.207
1Sure, I can do that - and in fact, just did! The program has been updated to version 1.2 on the website, you may need to refresh your browser to see the changes. There is now a new parm 'report' that should give you what you want. Help on the website and in the app explains it use. Merry Christmas! – Rob – 2018-12-18T14:43:54.687
(that it say return the current volume level as per ashleedawg's suggestion) – Rob – 2018-12-18T14:51:58.510
Thanks Rob for the utility and helping the community. It is just missing one important feature for me which is to control the Alert "Application" speaker. For some reasons, it is reseted on loud after logging in and I just want to quite this one. – sysarchitek – 2020-01-15T15:36:51.150
4
Owing and further simplifying Nircmd
@echo off
rem 65536 is 100%
rem device where zero is the default device
rem left and right
rem supports whole numbers only therefore throws "missing operator" error when specifying 655.36
set /a volume=%1 * 655
nircmd setvolume 0 %volume% %volume%
save it as a .bat file and execute by passing a parameter
eg: sound 60
will set the the sound volume 60%
make sure you put the bat file either next to the nircmd or in %windir%
(or define its folder in %path%
)
Needing a third party tool to set volume. I'm totally affraid. – m3nda – 2019-07-16T12:41:05.143
1AutoHotkey can do this, which you could compile and call from the command line – Matthew Lock – 2009-09-16T11:47:10.587