Windows 11 taskbar icons gone after update? Quick fix
Icons disappearing from the taskbar after a Windows 11 update is usually a corrupted icon cache or a broken Windows Explorer. Quick restart often fixes it.
Quick answer: Press Ctrl+Shift+Esc to open Task Manager, find 'Windows Explorer', right-click it, choose 'Restart'. That fixes 80% of cases. If not, read on.
You just installed the latest Windows 11 update (like 2024's 23H2 or 24H2). Reboot your PC. And now — your taskbar looks naked. The Start button is there, maybe the search icon, but the app icons, the volume icon, the network icon? All gone. Just a blank grey bar. I know that feeling. This tripped me up the first time too, back when I ran my help desk blog.
This happens because Windows updates often mess with the icon cache file (IconCache.db) or crash the Windows Explorer process during the update. The update itself isn't always to blame — sometimes a driver or a third-party app like Start11 or ExplorerPatcher conflicts with it. But the fix is usually simple.
Fix 1: Restart Windows Explorer (the real fix)
- Press Ctrl+Shift+Esc. Task Manager opens.
- Look for 'Windows Explorer' under the 'Processes' tab. If you don't see it, scroll down.
- Right-click 'Windows Explorer' and pick 'Restart'. Your screen will flicker and the taskbar will reload. Icons should come back.
If this doesn't work, don't panic. Try it twice — sometimes the first restart fails to grab the right icon cache.
Fix 2: Rebuild the icon cache (when restart isn't enough)
When Windows Explorer restarts but icons stay missing, the icon cache file is probably corrupted. Here's how to rebuild it clean:
- Close all open apps. Save your work.
- Open File Explorer (or press Win+E).
- In the address bar, paste this and press Enter:
%localappdata%\Microsoft\Windows\Explorer - You'll see a bunch of files named
iconcache_32.db,iconcache_48.db, and so on. - Delete all of them. Don't worry, Windows recreates them.
- Now restart Windows Explorer again (Fix 1 steps).
- Your taskbar icons should appear within 10 seconds.
Warning: If you can't delete the files because they're 'in use', skip this fix — try Fix 3 first.
Fix 3: Run the System File Checker (SFC) tool
Sometimes the update corrupts a system file that isn't the icon cache. SFC scans and repairs those files.
- Right-click the Start button and pick 'Windows Terminal (Admin)' or 'Command Prompt (Admin)'.
- Type
sfc /scannowand press Enter. - Wait. It takes 10-20 minutes. Don't close the window.
- When done, restart your PC.
Alternative fixes if the main ones fail
- Uninstall the update: Go to Settings > Windows Update > Update history > Uninstall updates. Remove the most recent KB update (like KB5035853 or KB5037771). Reboot.
- Run the DISM tool: In an admin terminal, type
DISM /Online /Cleanup-Image /RestoreHealth. This fixes deeper corruption. SFC + DISM together solve 95% of update-related issues. - Check third-party taskbar apps: If you use StartAllBack, ExplorerPatcher, or similar, disable or uninstall them. These broke after the 24H2 update for many people.
- Safe mode test: Boot into Safe Mode (hold Shift while clicking Restart on the login screen). If icons appear there, a driver or software is the culprit.
Prevention tip for next time
Before installing a big Windows 11 update (like 23H2 or 24H2), do this:
- Close all running apps.
- Right-click Start, choose 'Windows Terminal (Admin)'.
- Type
sfc /scannowbeforehand. Fix any issues first. - Then install the update.
This keeps your system files clean. I've been doing this since 2022 and haven't lost taskbar icons after an update since.
One more thing: If your icons disappear only after waking from sleep, that's a different problem. Try updating your graphics driver from the manufacturer's site (Intel, AMD, or NVIDIA) — not from Windows Update. That old driver trick still works.
Hope that gets your icons back. If not, drop a comment below with your Windows build (press Win+R, type winver, press Enter) and which fix you tried. I'll help narrow it down.
Was this solution helpful?