Why Does Sound Stop Working in Windows 10 & 11?
Audio problems in Windows are surprisingly common, and they almost always fall into one of a handful of categories. Understanding the root cause saves you from wasting time on fixes that simply won't apply to your situation.
| Root Cause | Typical Symptom | Frequency |
|---|---|---|
| Wrong output device selected | Sound plays to headphones while speakers are expected (or vice versa) | ⭐⭐⭐⭐⭐ Very common |
| Volume muted or too low | Taskbar speaker icon shows mute symbol or red cross | ⭐⭐⭐⭐⭐ Very common |
| Corrupt or outdated audio driver | No sound after a Windows Update; yellow exclamation in Device Manager | ⭐⭐⭐⭐ Common |
| Windows Audio service stopped | Sudden silence with no hardware change; error on playback | ⭐⭐⭐ Moderate |
| Hardware or cable fault | No sound on any output device; device not listed | ⭐⭐ Less common |
| Corrupted system files | Audio broken alongside other system errors | ⭐ Rare |
Quick Checks Before Anything Else
Before diving into system settings, run through these 60-second sanity checks. They solve the problem more often than you'd think.
🔈 Volume & Mute
- Look at the speaker icon in the bottom-right taskbar. A red circle with an X means sound is muted system-wide. Click it once to unmute.
- Right-click the speaker icon and choose Open Volume Mixer. Make sure neither the master volume nor the individual app volume (e.g., browser, media player) is muted or set to zero.
- On laptops, check for a dedicated mute key (often Fn + F1–F4). Press it to toggle mute.
🔌 Physical Connections
- If using external speakers or headphones, check the 3.5 mm jack or USB cable is firmly plugged in. Try a different port.
- Check that the speaker's own power switch and volume knob are turned on and up.
- Test the same speakers or headphones on a phone or another device to confirm the hardware itself works.
Run the Built-In Windows Audio Troubleshooter
Windows ships with an automated audio diagnostic tool that detects and can automatically repair many common issues — wrong audio format, misconfigured services, driver problems.
🪟 Windows 11
- Open Settings (Win + I) and go to System → Troubleshoot → Other troubleshooters.
- Find Playing Audio in the list and click Run.
- Follow the on-screen prompts. Windows will test each component and recommend or apply a fix automatically.
🪟 Windows 10
- Open Settings (Win + I) → Update & Security → Troubleshoot.
- Click Additional troubleshooters and select Playing Audio.
- Click Run the troubleshooter and let it complete.
Restart Windows Audio Services to Restore Sound
Windows audio depends on three background services. If any of them crashes or gets set to Disabled, you'll lose all sound instantly — even with working hardware and drivers.
🔧 Restarting via Services Manager
- Press Win + R, type
services.msc, and press Enter to open the Services panel. - Locate Windows Audio. Right-click it and choose Restart. If it isn't running, choose Start instead.
- Repeat for Windows Audio Endpoint Builder and Remote Procedure Call (RPC).
- Double-click each service and confirm its Startup type is set to Automatic, not Manual or Disabled. Click OK to save.
⚡ Faster Method via Command Prompt
Open Command Prompt as Administrator (right-click Start → Terminal (Admin) or Command Prompt (Admin)) and run:
Command Prompt · Run as Administrator
net stop AudioSrv
net start AudioSrv
net stop AudioEndpointBuilder
net start AudioEndpointBuilder
Update or Reinstall Audio Drivers in Windows 10 & 11
Corrupt, outdated, or incompatible audio drivers are one of the most frequent causes of sound disappearing after a Windows Update. Here's how to fix them.
🔍 Check for Driver Problems First
- Press Win + X and choose Device Manager.
- Expand Sound, video and game controllers. Look for any device with a yellow warning triangle (⚠️) or a red X.
- If a device shows an error, right-click it and select Properties to see the error code.
🔄 Update the Driver
- Right-click your audio device in Device Manager and choose Update driver.
- Select Search automatically for drivers. Windows will check Windows Update for the latest compatible driver.
- Restart your PC after the update completes and test audio.
🗑️ Reinstall the Driver (Clean Install)
- Right-click your audio device → Uninstall device. Check "Delete the driver software for this device" if the option appears.
- Restart your PC. Windows will automatically reinstall a generic driver on startup.
- For better results, visit your PC manufacturer's website (Dell, HP, Lenovo, ASUS, etc.) or your sound card maker (Realtek, Creative, etc.) and download the latest official driver for your exact model.
Set the Correct Default Audio Output Device
Windows can detect multiple audio outputs at once — HDMI, speakers, headphones, USB audio. If the wrong one is set as default, your sound goes nowhere you can hear it.
🎛️ Change the Default Device
- Right-click the speaker icon in the taskbar and choose Sound settings.
- Under Output, click the dropdown and select your actual speakers or headphones by name.
- On Windows 11, you can also click the small arrow (›) next to a device to expand per-app audio routing and override individual apps.
🔊 Test Each Output
- In Sound settings, click on your selected output device and press Test to hear a chime through it.
- If no sound plays even through the correct device, continue to the driver and advanced fix sections below.
Install Windows Updates to Fix Audio Bugs
Microsoft regularly ships audio-related bug fixes as part of cumulative updates. If a recent update broke your sound, a newer patch may have already been released to correct it.
📦 Check for Pending Updates
- Open Settings → Windows Update (Win + I → Windows Update).
- Click Check for updates and install everything available, including optional driver updates.
- Restart your PC when prompted and test audio.
↩️ Roll Back a Problematic Update
If sound stopped working right after a specific update, you can uninstall that update:
- Go to Settings → Windows Update → Update history → Uninstall updates.
- Find the most recent update (sorted by date), right-click it and select Uninstall.
- Restart and test. Note: Windows may reinstall the update later unless you pause updates temporarily.
✔ When Updates Help
- Patch fixes a known audio regression introduced in a prior update
- New driver version ships via Windows Update
- Bug fix for your specific hardware model is included
- Security update removes a conflicting component
✗ When Updates Hurt
- Feature update replaces OEM driver with generic one
- Update incompatible with older Realtek / Conexant chips
- New audio stack introduced a regression for your config
- Third-party audio software (Dolby, Bang & Olufsen) breaks
Advanced Fixes: SFC, DISM & System Restore
If none of the previous steps worked, the problem likely lies in corrupted Windows system files. These tools scan and repair Windows from within — no reinstall required.
🔬 SFC — System File Checker
SFC scans all protected system files and replaces corrupted ones with a cached clean copy.
Command Prompt · Run as Administrator
sfc /scannow
Wait for the scan to complete (it may take 10–15 minutes). If it reports "Windows Resource Protection found corrupt files and repaired them", restart and test audio.
🏥 DISM — Deployment Image Servicing
If SFC couldn't fix everything, DISM repairs the Windows component store that SFC pulls from — it requires an internet connection.
Command Prompt · Run as Administrator
DISM /Online /Cleanup-Image /RestoreHealth
This may take 15–20 minutes. After it finishes, run sfc /scannow again, then restart.
⏪ System Restore
If you have a restore point from before the audio stopped working, System Restore can roll Windows back to that state — without affecting your personal files.
- Press Win + R, type
rstrui.exe, and press Enter to open System Restore. - Select a restore point dated before the audio problem began. Click Scan for affected programs to see what will change.
- Click Finish to begin the restore. Your PC will restart automatically.
Frequently Asked Questions: No Sound in Windows
Q Why did sound stop working after a Windows 11 update? ▼
Q My speakers work fine on another computer. Why no sound in Windows? ▼
Q There's a red X on the speaker icon in the taskbar — what does it mean? ▼
services.msc. If the device still doesn't appear, reinstall the audio driver from your manufacturer's website.
Q How do I fix no sound from HDMI on Windows 10 or 11? ▼
Q Can a virus or malware cause audio to stop working? ▼
Q Will reinstalling Windows permanently fix the sound? ▼
🔊 Bottom Line
Most sound problems in Windows 10 and Windows 11 can be solved without any special skills or tools. Start with the volume check and output device selection, run the built-in audio troubleshooter, then restart the Windows Audio services. If those don't help, update or reinstall the audio driver from your manufacturer's site. For stubborn cases, the SFC and DISM commands repair corrupted system files that no other tool can fix. Work through the steps in order and sound will almost certainly return long before you reach the last resort.