What replaced SndVol.exe on Windows 10?

1

1

In versions of windows previous to 10, the sound volume was an executable %windir%\System32\SndVol.exe. While this is still available on Windows 10, it still launches the older volume control rather than the newer Windows 10 one.

Is there a similar executable to call for the newer volume control that arrived with windows 10?

Old volume control:

old volume control

New volume Control

new volume control

Toby

Posted 2019-03-01T09:14:23.467

Reputation: 453

Answers

2

It’s part of the Windows Shell Experience Host (ShellExperienceHost.exe) that also hosts the Start Menu and all the other tray popups. It’s not a regular Windows program but a Windows Universal App.

You can easily check in Task Manager. The app is suspended when you don’t interact with it but woken up when you open the volume control:

suspended app

not suspended

We could probably help you achieve your goal more easily if you asked the actual question though. ;)

Daniel B

Posted 2019-03-01T09:14:23.467

Reputation: 40 502

1Thanks Daniel. I wanted to create a shortcut (or some other way) to allow me to change the volume from keyboard shortcut (standard keyboard, no special volume function keys). Happy enough to figure that part out by myself though now I have a starting point :) – Toby – 2019-03-01T10:37:04.617

There are many possibilities to achieve this, for example AutoHotkey. No need to “hack it”: Windows offers APIs for this.

– Daniel B – 2019-03-01T10:41:56.170