Sound Not Working After Windows 10/11 Update — Complete Fix Guide

 


Quick Answer: Windows updates commonly break sound by overwriting your audio driver, switching your default playback device, or corrupting audio services. The fastest fix is rolling back or reinstalling your audio driver. Full step-by-step fixes are below.

You updated Windows 10 or 11, your PC restarted, and now there's no sound. The speaker icon in the taskbar might show a red X, a yellow warning triangle, or it looks fine but nothing plays. You didn't touch any audio settings — the update broke it.

This is one of the top complaints after every major Windows update. The cause is almost always driver-related, but there are a few other culprits worth checking. This guide walks through every fix from the simplest to the deepest, in the order most likely to work.

Why Windows Updates Break Sound

There are four common ways a Windows update kills audio:

  • Driver replacement: The update installs a generic Microsoft audio driver, overwriting your manufacturer's optimized one. Generic drivers often don't support your hardware fully.
  • Default device switch: The update resets your default audio output to a device that isn't connected — like HDMI output when you're using speakers, or vice versa.
  • Audio service crash: Core Windows Audio services get disrupted during the update and don't restart properly.
  • App volume reset: Windows resets per-app audio levels in the Volume Mixer, muting specific apps silently.

Identify Your Problem First

DO THIS BEFORE ANYTHING ELSE

Look at the speaker icon in your taskbar bottom-right and match it to the table below:

What You SeeWhat It MeansStart With
Red X on speaker iconNo audio device detectedFix 3 → Fix 4
Yellow warning triangleDriver error or conflictFix 3 → Fix 6
Speaker looks normal, but no soundWrong output device or muted appFix 1 → Fix 2
Sound works in some apps but not othersApp-level volume settingFix 8
Sound was working, stopped suddenlyAudio service crashedFix 5
No audio device in Device ManagerDriver completely missingFix 4 → Fix 6

Fix 1: Check Volume and Playback Device

START HERE — 2 MINUTES
 ⏱ 2 min

Before going deep, rule out the obvious. Windows updates frequently reset the default audio output device — this is the #1 cause of "no sound" that looks like a major problem but takes 30 seconds to fix.

Check your default playback device:

  1. Right-click the speaker icon in the taskbar
  2. Click "Open Sound settings" (Windows 11) or "Sounds" (Windows 10)
  3. Under Output, check which device is selected
  4. Make sure it matches your actual speakers or headphones — not "HDMI Output" or a disconnected device
  5. Click the dropdown and select the correct device

Check the Volume Mixer for muted apps:

  1. Right-click the speaker icon → Open Volume Mixer
  2. Check if any app is muted or set to 0
  3. Drag sliders up and unmute as needed


✅ Fixed by changing the output device? The update reset your default audio device. You're done — but note which device it switched to so you can catch it faster next time.

Fix 2: Run the Audio Troubleshooter

QUICK AUTOMATED FIX
 ⏱ 3 min

Windows has a dedicated audio troubleshooter that catches common post-update issues automatically.

On Windows 11:

  1. Press Windows + I → Settings
  2. Go to System → Troubleshoot → Other troubleshooters
  3. Find Playing Audio → click Run
  4. Follow the prompts and apply any suggested fixes
  5. Restart your PC

On Windows 10:

  1. Press Windows + I → Settings
  2. Go to Update & Security → Troubleshoot → Additional troubleshooters
  3. Select Playing Audio → Run the troubleshooter
  4. Apply suggested fixes and restart
⚠️ Troubleshooter says "no issues found" but sound still broken? This is common. The troubleshooter misses driver-level problems. Move to Fix 3.

Fix 3: Roll Back the Audio Driver

FIXES MOST CASES — TRY THIS EARLY
 ⏱ 5 min

This is the single most effective fix when the update replaced your audio driver. Rolling back restores the version that was working before.

  1. Right-click Start → Device Manager
  2. Expand Sound, video and game controllers
  3. Look for your audio device — usually named one of:
    • Realtek High Definition Audio
    • Intel(R) Display Audio
    • NVIDIA High Definition Audio
    • AMD High Definition Audio
  4. Right-click your audio device → Properties
  5. Click the Driver tab
  6. Click Roll Back Driver
  7. Select a reason when prompted → click Yes
  8. Restart your PC
⚠️ "Roll Back Driver" is greyed out? Windows doesn't have a saved previous driver version. Go directly to Fix 4.
💡 Multiple audio devices listed? You may see both "Realtek Audio" and "Intel Display Audio" — this is normal. Roll back the one that handles your speakers/headphones (usually Realtek for laptops, or your dedicated sound card for desktops).

Fix 4: Reinstall the Audio Driver

FOR MISSING OR CORRUPTED DRIVERS
 ⏱ 10 min

If rolling back isn't available or didn't fix the problem, a clean reinstall often does the job.

Step 1: Uninstall the current driver

  1. Open Device Manager
  2. Expand Sound, video and game controllers
  3. Right-click your audio device → Uninstall device
  4. Check "Delete the driver software for this device"
  5. Click Uninstall

Step 2: Reinstall the driver

After uninstalling, you have two options:

Option A — Let Windows reinstall automatically:

  1. Restart your PC
  2. Windows will detect the missing driver and reinstall a default version
  3. Test if sound works

Option B — Manually scan for hardware changes:

  1. In Device Manager, click Action → Scan for hardware changes
  2. Windows will detect and reinstall the audio driver
  3. Restart and test
💡 Still no sound after reinstall? The default Microsoft driver may not fully support your hardware. Move to Fix 6 to install the manufacturer's driver directly.

Fix 5: Restart Windows Audio Services

FOR SUDDEN SOUND LOSS MID-SESSION
 ⏱ 3 min

The Windows Audio service can stop or crash after an update without any visible error. Restarting it takes under a minute and fixes this silently.

  1. Press Windows + R, type services.msc, press Enter
  2. Find Windows Audio in the list
  3. Right-click → Restart
  4. Also find Windows Audio Endpoint Builder
  5. Right-click → Restart

Alternatively, run these commands in Command Prompt (Admin):

net stop audiosrv
net stop AudioEndpointBuilder
net start AudioEndpointBuilder
net start audiosrv

Test your audio immediately after. No restart needed for this fix.

💡 Make sure these services are set to start automatically: Double-click each service → set Startup type to Automatic. If they're set to Manual or Disabled, they won't start after the next reboot.

Fix 6: Update Audio Driver from Manufacturer

BEST LONG-TERM FIX FOR DRIVER ISSUES
 ⏱ 15 min

The driver Windows installs automatically is often a generic version. Your hardware manufacturer's driver is almost always better — it's tuned specifically for your device and more likely to work correctly after a Windows update.

For Realtek (most common in laptops and desktops):

Go to your laptop or motherboard manufacturer's support page and download the Realtek audio driver for your exact model. Do not download from the generic Realtek website — get it from the device manufacturer.

For desktop motherboards:

Go to your motherboard manufacturer's website (MSI, Gigabyte, ASUS, ASRock) and search for your motherboard model to find the audio driver.

How to install:

  1. Download the audio driver installer (.exe)
  2. Run it and follow the prompts
  3. Restart when prompted
  4. Test your audio

Fix 7: Run SFC and DISM Repair

FOR DEEP SYSTEM FILE CORRUPTION
 ⏱ 20–40 min

If the update corrupted core Windows audio components, no driver fix will work until those files are repaired.

  1. Press Windows + S, type cmd
  2. Right-click Command Prompt → Run as administrator
  3. Run DISM first:
DISM /Online /Cleanup-Image /RestoreHealth

Wait for it to complete fully (10-20 minutes), then run SFC:

sfc /scannow
  1. Once SFC finishes, restart your PC
  2. Test audio
⚠️ Always run DISM before SFC. DISM repairs the Windows image that SFC uses as a reference. If you run SFC first on a corrupted system, it may "repair" files using bad data.

Fix 8: Check App-Specific Audio Settings

IF SOUND WORKS IN SOME APPS BUT NOT OTHERS
 ⏱ 3 min

Windows 11 and 10 have per-app audio output settings. An update can reset these, causing specific apps (like Chrome, Spotify, or games) to output to the wrong device or get muted.

On Windows 11:

  1. Press Windows + I → Settings
  2. Go to System → Sound
  3. Scroll down to Volume mixer
  4. Check each app — make sure none are muted and all are set to the correct output device

On Windows 10:

  1. Right-click the speaker icon → Open Volume Mixer
  2. Check each app's volume level
  3. For per-app output device: Right-click speaker icon → Sounds → Playback tab → right-click your device → Set as Default Device
💡 Chrome specifically: Chrome has its own audio output setting. Go to chrome://settings/content/sound and make sure sound is allowed for your sites.

Fix 9: Uninstall the Windows Update

LAST RESORT — WHEN NOTHING ELSE WORKS
 ⏱ 15 min

If audio broke immediately after a specific update and nothing above has fixed it, removing that update is a valid and safe solution.

On Windows 11:

  1. Press Windows + I → Settings
  2. Go to Windows Update → Update history
  3. Click Uninstall updates
  4. Find the most recent update by date
  5. Click Uninstall → confirm
  6. Restart your PC

On Windows 10:

  1. Go to Control Panel → Programs → Programs and Features
  2. Click View installed updates
  3. Sort by Installed On date
  4. Uninstall the most recent update
  5. Restart
💡 After uninstalling: Pause updates for 2-4 weeks via Windows Update → Advanced options → Pause updates. Microsoft typically patches broken updates within that window.

⭐ What Worked For Me

[→ This is where you add your real experience. Be specific: what device did you test on? What exactly happened to the sound? Which fix worked and which didn't? Even a few honest sentences here will set your post apart from every other generic guide online. Google's Helpful Content system specifically rewards first-hand experience.]

Example of what to write: "On my Dell Inspiron 15 running Windows 11, sound disappeared completely after the March 2024 cumulative update. The speaker icon showed a red X. The troubleshooter said 'no issues found' which was useless. Fix 1 showed that Windows had switched my default output to 'Intel Display Audio' (my monitor's HDMI port, which has no speakers). Switching it back to 'Realtek Audio' fixed it in under 30 seconds. If you're on a laptop connected to an external monitor, check this first — it's the most common cause and the easiest fix."


Quick Reference: Which Fix to Try

Your SituationBest Fix(es)
Red X on speaker iconFix 3 → Fix 4 → Fix 6
Yellow warning on audio deviceFix 3 → Fix 6
Speaker looks normal but no soundFix 1 → Fix 5 → Fix 2
Sound works in some apps, not othersFix 8 → Fix 1
Sound stopped suddenly mid-sessionFix 5
No audio device in Device ManagerFix 4 → Fix 6
Nothing works at allFix 7 → Fix 9

❓ Frequently Asked Questions

My sound worked fine and then stopped suddenly — not after a restart. What happened?

This is almost always the Windows Audio service crashing (Fix 5). Run the service restart commands and your sound should come back immediately without a reboot. If it keeps crashing, you have a deeper driver or corruption issue — run Fix 7.

I see multiple audio devices in Device Manager. Which one do I roll back?

Roll back the one that handles your main output. For most laptops it's "Realtek High Definition Audio." If you're connected to a monitor via HDMI and want that monitor's speakers, roll back "Intel Display Audio" or "NVIDIA High Definition Audio." If unsure, roll back all of them one at a time and test after each.

The roll back option is greyed out. Why?

Windows only saves the previous driver version if there was one installed before. If the update installed a brand new driver with no prior version on record, there's nothing to roll back to. Your solution is Fix 4 (clean reinstall) or Fix 6 (manufacturer driver).

My headphones work but my laptop speakers don't (or vice versa).

This points to a device-specific driver issue rather than a system-wide audio problem. In Device Manager, check if both output devices are listed without errors. If one has a warning triangle, update or reinstall that specific device's driver. Also check Fix 1 to make sure the right device is set as default for each scenario.

Will reinstalling the audio driver delete my audio settings?

It may reset equalizer or enhancement settings if you were using Realtek Audio Console or a similar app. Your Windows volume levels and app-specific settings are stored separately and should remain. Just note your custom audio settings before reinstalling so you can restore them if needed.

Sound worked right after the update but stopped the next day. Why?

Windows sometimes finishes applying update configurations on the second or third boot — not the first. A newly installed driver might also conflict with another component that finishes loading later. Run Fix 5 first (audio service restart), then Fix 3 if that doesn't work.

Post a Comment

Previous Post Next Post