Enable Windows Audio on a Windows Server Instance
Published on September 12, 2022•Updated on November 21, 2023
Introduction
Vultr's Windows Servers do not enable the Windows Audio service. If you need to enable it, follow these steps.
PowerShell Procedure
Follow these steps to enable the audio service from PowerShell.
Connect to your server with Remote Desktop (RDP).
Open PowerShell as a Administrator.
PS> Start-Process -FilePath "powershell" -Verb RunAs
Configure the Audiosrv service to start automatically.
PS> sc config Audiosrv start=auto
Start the service.
PS> net start Audiosrv
GUI Procedure
Follow these steps to enable the audio service from the graphical user interface.
- Connect to your server with Remote Desktop (RDP).
- Press WIN R keys to open the Run window.
- Type
services.msc
and the Run window and type Enter. - Double-click the Windows Audio service to open the properties dialog.
- Change the Startup type to Automatic.
- Click Start to start the service now.
Conclusion
After changing this setting, Windows Audio will start each time the server reboots.