Where are the volume mixer startup options? Is there in regedit?

5

1

I want to know where the initial volume of the windows mixer is located.

Emilio Platzer

Posted 2016-07-29T01:52:49.423

Reputation: 1 017

Answers

4

I want to know where the initial volume of the windows mixer is located.

Okay, so your question wasn't clear to me initially so I probably provided way too much detail below but I'll leave that as bonus material I suppose in case you find that helpful.

To control the default volume level of the Windows 10 Volume Mixer I've provided a method below that doesn't require registry hacks and I confirmed works just fine.

Basically you'll download the tool, copy it to a folder as explained in the below referenced material, and then create a simple batch script with the logic in it as I put in the below Batch Script Example. You'll then create a Windows Task Scheduler task to run it to adjust the volume per the setting you specify at logon, startup, and so on. Each time the task is triggered the volume will adjust accordingly.

Batch Script Example

Note that the value of 0 means the lowest volume setting as described below and the path is the path as described below as well. You'll need to make adjustments to these parts for your particular needs.

@ECHO OFF
"C:\Program Files\Nircmd\nircmd.exe" setsysvolume 0
EXIT /B

Task Scheduler

  • You can probably place the batch file in the startup folder and see if that'll suit you need; otherwise, you can use Windows Task Scheduler and schedule the batch file and put a trigger on it for executing it On connection to user session and At log on.
  • List item
  • enter image description here

Nircmd - Download and Volume Settings

Using this utility we can achieve the goals of both volume control setting and muting. Download the utility at Nir's Web site. It is a ZIP file. I simply created a folder in my Program Files folder called SetVol and unzipped the contents into it.

"G:\Program Files\SetVol\nircmd.exe" setsysvolume 0

substituting the correct drive letter for your system. This example sets the system volume to zero.

This table shows some common volume level percentages and the value to use for the nircmd shortcut. It is based on a maximum volume level value of 65,635 units.

enter image description here

source


BONUS MATERIAL

Where are the volume mixer startup options? Is there in regedit?

In addition to the Windows 10 Volume Mixer being in this location: C:\Windows\System32\SndVol.exe (or %windir%\System32\SndVol.exe),

  • enter image description here

you can follow the below instructions referenced on the steps to follow to edit the registry for enabling the older GUI of Windows Volume Mixer.


How to enable the old Volume control in Windows 10

To restore the old volume applet in Windows 10, follow these steps:

  1. Open Registry Editor.

  2. Go to the following Registry key:

HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\MTCUVC

Tip: See how to jump to the desired Registry key with one click.

Create the MTCUVC subkey if you do not have it.

  1. Create a new 32-bit DWORD value named EnableMtcUvc and leave its value as 0.

enter image description here

  1. Sign out and log in back to your Windows account. Alternatively, you can just restart the Explorer shell. Actually, for many users this tweak works instantly, so try to click the speaker systray icon first.

Before:

enter image description here

After:

enter image description here

source

Pimp Juice IT

Posted 2016-07-29T01:52:49.423

Reputation: 29 425

Which bit of your answer addresses "where is stored the inital volume of the windows mixer"? – DavidPostill – 2016-07-29T12:24:11.637

2@DavidPostill Fixed, not sure how I interpreted that based on my initial answer but I fixed it with a workable solution which I confirmed works 100% as expected on Windows 10. – Pimp Juice IT – 2016-07-29T14:19:03.857

Nice answer +1 ;) – DavidPostill – 2016-07-29T14:37:34.380

Thanks. But I searching for a standard way to change the initial options. – Emilio Platzer – 2016-07-29T14:59:05.137

I could evaluate the use of an external application. But the tool sugested by @PIMP_JUICE_IT is not open source (I can not see what it does). – Emilio Platzer – 2016-07-29T15:01:56.260

@EmilioPlatzer This is freeware* and the License detail is at the bottom of the links from my answer... the direct link to the 64-bit is here: http://nirsoft.net/utils/nircmd-x64.zip and the 32-bit tool is here: http://nirsoft.net/utils/nircmd.zip. These are tools which do NOT require installation too -- just download the ZIP file and then extract the exe to a folder and create the batch script. None of this should require you purchasing anything and again it's FREEWARE.

– Pimp Juice IT – 2016-07-29T17:15:27.890

@EmilioPlatzer Were you able to look over my answer and did you get a chance to read my above comment regarding this being FREEWARE? I'm not familiar with another way to do this so this should be a simple solution that does NOT require purchasing anything and it doesn't request installing anything either so I wanted to be sure you understand this is a free solution other than what time you'd spend getting and extracting the file and creating the simple batch file and creating the Task Scheduler task. Please send me an update when you get a moment and let me know your thoughts. – Pimp Juice IT – 2016-07-31T21:50:38.547

Hi @PIMP_JUICE_IT. I am very grateful to you for your reply. I don't care about paying. Freeware is not the same to open source or to free software. I prefer a solution that shows where is the config stored or an application with de source code. I'll keep looking for an answer to my question. Installing a "no warranty, nor source code app" is not in my options. – Emilio Platzer – 2016-07-31T22:02:33.220

Hi @PIMP_JUICE_IT - great answer! Do you perhaps also know how to set the default audio DEVICE? See http://superuser.com/questions/1109657/set-new-audio-device-default-for-volume-mixer-in-windows-10 - Thank you in advance

– Simon Ferndriger – 2016-08-09T11:27:43.090