0x80004005

Windows Audio Service Crash: Quick Fixes That Work

Windows Errors Beginner 👁 9 views 📅 Jun 25, 2026

Windows Audio service stops working after sleep or driver update. This is common on Win 10/11. Try a service restart first, then check drivers.

The 30-Second Fix: Restart the Service

This is the first thing I try. It fixes maybe 60% of cases. Open the Run box (Win+R), type services.msc and hit Enter. Scroll down to Windows Audio. Right-click it and pick Restart. If it's already stopped, right-click and pick Start. Also restart the Windows Audio Endpoint Builder service right below it — they're linked. Wait 10 seconds. Test your sound.

If the service won't start at all, you'll get an error like "Windows could not start the Windows Audio service on Local Computer." That's a different beast. Skip to the 5-minute fix.

One thing people miss: check if the service is set to start automatically. Right-click Windows Audio, pick Properties. Make sure the Startup type is Automatic. If it's set to Manual or Disabled, that's your problem. Change it to Automatic, click Apply, then Start the service.

The 5-Minute Fix: Re-register Audio Services

If the quick restart didn't stick or the service keeps crashing after sleep, the culprit here is almost always corrupted audio service registration. Don't bother reinstalling drivers yet — that rarely helps at this stage.

Open Command Prompt as Administrator — right-click Start and pick Terminal (Admin) or Command Prompt (Admin). Then run these commands one at a time:

net localgroup Administrators /add networkservice
net localgroup Administrators /add localservice
sc config Audiosrv start= auto
sc config AudioEndpointBuilder start= auto
sc start Audiosrv
sc start AudioEndpointBuilder

The first two commands fix a common permission issue where the network and local service accounts lose admin rights. This happens after some Windows updates. The rest re-registers the service startup and starts them manually.

After running those, restart your PC. Yes, restart. Don't skip it. I've seen people run these commands and think they're done — only to have the crash come back because the system didn't pick up the changes.

Test your audio after the restart. If it's working, you're done. If not, move to the advanced fix.

The 15+ Minute Fix: Audio Driver Clean Install

Okay, the simple stuff didn't work. Now we're dealing with a driver conflict or corruption. The real fix here is a clean driver install — not just an update. Here's the process I've used hundreds of times.

First, download the latest audio driver from your PC manufacturer's support site — not from Realtek, not from Nvidia, not from Windows Update. For Dell, HP, Lenovo, or custom builds, go to the motherboard maker's site. This is where people screw up: they get drivers from the wrong source and the problem comes back.

Next, remove the old driver completely. Open Device Manager (right-click Start). Find Sound, video and game controllers. Right-click your audio device — it'll be Realtek High Definition Audio, Nvidia High Definition Audio, or something similar. Pick Uninstall device. Check the box that says Delete the driver software for this device. Yes, check it. Click Uninstall.

Don't restart yet. Now go to Programs and Features (Add/Remove Programs) and uninstall anything audio-related: Realtek HD Audio Manager, Nvidia HD Audio driver, Dolby Audio, anything that looks like it came with your sound card. Reboot now.

After the reboot, Windows will install a generic audio driver. Don't let it. Go to Device Manager again, right-click your audio device, pick Update driver, then Browse my computer for drivers. Point it to the folder where you saved the driver you downloaded earlier. Install it. Reboot one more time.

This whole process takes 15-20 minutes. But I've seen it fix audio crashes that survived multiple Windows reinstalls. The key is deleting the old driver files — if you skip that step, the conflict stays.

When to Try Alternate Fixes

If the clean driver install doesn't work, there are two less common culprits. First, check if you have Nvidia HD Audio installed when using an Nvidia GPU. Sometimes that driver conflicts with the realtek one. Uninstall it from Device Manager and see if audio works.

Second, if you're on a laptop and the audio crashes right after waking from sleep, go to Device Manager, right-click the audio device, pick Properties, go to Power Management, and uncheck "Allow the computer to turn off this device to save power." That fixes a sleep-related crash on 90% of laptops I've seen.

If nothing works, you might have a hardware issue. But that's rare — maybe 1 in 50 cases. Try the fixes above first. They work.

Was this solution helpful?