[ad_1]
The Windows 10 user experience is a vast improvement over any previous version of Windows, and many Windows 10 users actually enjoy using their machines, as opposed to previous generations where we were sometimes in less pain than at other times.
There are many things to love about the Windows 10 desktop, but there is one area of life where Windows users seemingly must gaze in envy upon their Mac brothers and sisters, and that is the use of hotkeys for controlling the volume level on the machine. But don’t despair! It’s possible to get that same functionality on a Windows 10 computer.
In this article, we’ll show you three ways to add volume-control hotkeys to your Windows 10 machine, if it doesn’t have them already.
Adjusting Windows 10 Audio Level using Hotkeys
Before we get started talking about how to add audio hotkeys to Windows 10, make sure that your keyboard or laptop doesn’t already have this as a feature. For instance, common hotkeys for volume control are Fn + F5 for volume down and Fn + F6 for volume up.
There are a few ways to add audio hotkeys to Windows 10, if your device doesn’t already have hotkeys for this. We’ll cover them each separately.
Windows 10 Audio Hotkeys using 3RVX
In addition to letting you assign whatever hotkeys you wish to control your system audio, 3RVX comes with an on-screen display (OSD) that you can customize. You can even fine-tune precisely how the volume responds to your commands. You can’t do that on macOS!
- To start, download and install the latest version of 3RVX from the developer’s website and then launch the application from the Windows Start Menu. This will pull up the 3RVX settings.
- Click on the Hotkeys tab to customize the hotkeys for volume adjustment. There aren’t any default hotkeys; you’ll have to add some manually.
- Click on the + button to add a new hotkey and then click on the grey bar by Keys in the Hotkey Editor.
- A dialog box will appear asking you to type a hotkey. Try to use something that is not already assigned to another system function. I recommend using the Windows key with a Mouse Wheel action if your mouse has a scroll wheel.
- Once you’ve selected a hotkey, you’ll then need to assign it to an action. Click the Action menu in the Hotkey Editor and select whether you want the hotkey you just typed to increase, decrease, or mute the audio. You’ll notice you can also assign actions to increase or decrease the screen brightness, opening the CD tray, and more.
- Try adding hotkeys for increasing, decreasing, and muting the audio, and then be sure to click the Apply button.
- To test it out, close the 3RVX settings. Now, when you type your hotkey, you should see an audio icon overlay appear on your screen, almost identical to the macOS.
- To run this program at startup, select the General tab, check the Run on Windows startup option, and click Save to apply the settings.
Adjusting Windows 10 Audio using AutoHotKey
Sometimes you just don’t want to add yet another single-purpose application to your system, or perhaps you already use AutoHotKey for other tasks and just want to expand your AHK script library to include one to give you volume control hotkeys. AutoHotKey is a tremendously powerful scripting and automation system for Windows. It’s completely free and you can download it here.

It’s beyond the scope of this article to explain how to program in AutoHotKey, so instead, we’ll provide you with two basic scripts. The first script is the most basic of all. If you put this text in a. AHK file and then double-click on the AHK file, it will give you a simple hotkey control over the volume setting. Hitting the Alt and the left-arrow key will lower the volume by a step, while the Alt-right arrow will raise it by a step. Here is the script:
+Left::SoundSet, -5
+Right::SoundSet, +5
Return
However, this simple script (while functional) doesn’t provide you with any feedback as to where the volume level is! So for that reason, I’ve borrowed this script written by Joe Winograd, an awesome AutoHotKey coder, and guru.
Joe’s script gives you a visual representation of the changing volume and also plays a sound that demonstrates the volume level as you move it up or down with the Alt-left and Alt-right keys. Joe’s script also places a headphone icon in the tool tray so that you can control its execution.
Here’s Joe’s script:
#Warn,UseUnsetLocal
#NoEnv
#SingleInstance force
SetBatchLines,-1
SoundGet,Volume
Volume:=Round(Volume)
TrayTip:=”Alt+LeftArrow or Alt+RightArrow to adjust volume” . “`nCurrent Volume=” . Volume
TrayIconFile:=A_WinDir . “System32DDORes.dll” ; get tray icon from DDORes.dll
TrayIconNum:=”-2032″ ; use headphones as tray icon (icon 2032 in DDORes)
Menu,Tray,Tip,%TrayTip%
Menu,Tray,Icon,%TrayIconFile%,%TrayIconNum%
Return
!Left::
SetTimer,SliderOff,3000
SoundSet,-1
Gosub,DisplaySlider
Return
!Right::
SetTimer,SliderOff,3000
SoundSet,+1
Gosub,DisplaySlider
Return
SliderOff:
Progress,Off
Return
DisplaySlider:
SoundGet,Volume
Volume:=Round(Volume)
Progress,%Volume%,%Volume%,Volume,HorizontalVolumeSliderW10
TrayTip:=”Alt+LeftArrow or Alt+RightArrow to adjust volume” . “`nCurrent Volume=” . Volume
Menu,Tray,Tip,%TrayTip%
Return
Now you can quickly adjust the volume on Windows with your choice of hotkey!
Windows 10 Audio Hotkeys using Shortcuts
This one comes straight from Melchizedek Qui, a moderator on the Microsoft Answers forum, and it’s a clever and straightforward approach.
- Right-click on an empty area of your desktop and select New > Shortcut.
- In the text box, type or cut and paste “C:WindowsSystem32SndVol.exe -T 76611119 0” (no quotes) and hit Next.
- Enter a name for the shortcut – for example, “Sound Control”, and click on Finish.
- Right-click on the new shortcut and select Properties.
- In the Shortcut key textbox, type whatever shortcut key you want to use and click OK.
Now, whenever you want to adjust your volume from the keyboard, just hit your hotkey, and the volume mixer will load. You can then use the up and down arrow keys to adjust your volume control. Simple!
Windows 10 Audio Adjustment Made Easy
Although many keyboards and laptops now have built-in hotkeys for adjusting the volume, not all of them do. So, if you find yourself having this issue, you can quickly remedy the situation. Whichever option you choose, volume control can be made simpler in Windows 10.
[ad_2]
Source link