Windows

Taskbar Frozen, Not Responding, or Icons Missing in Windows 11? Restart the Shell and Re-register the Apps

Published ✓ Verified ⏱️ 3 min read April 9, 2025 · by Ryan Bennett

Your Windows 11 taskbar is frozen — clicks on icons or the clock do nothing, it won’t redraw, or icons have disappeared and left a blank strip. The desktop may still respond.

Why: the taskbar isn’t a standalone bar; it’s drawn by Windows Explorer (explorer.exe) together with packaged XAML system apps. When Explorer hangs, an icon-cache file is corrupt, or those XAML packages don’t register in time (a known post-update bug on some builds), the taskbar stops responding while the rest of the desktop keeps working. Start at the top.

Fix 1: Restart Windows Explorer

This re-draws the taskbar in seconds and is the single most effective fix.

  1. Press Ctrl + Shift + Esc to open Task Manager.
  2. On Processes, select Windows Explorer.
  3. Right-click → Restart.

The screen flickers and the taskbar comes back. If Windows Explorer isn’t listed (taskbar fully gone), click Run new task, type explorer.exe, tick Create this task with administrative privileges, and select OK.

Fix 2: Clear a corrupt icon cache (for missing or wrong icons)

If the taskbar responds but icons are blank, generic, or missing, the icon cache is likely damaged.

  1. In Task Manager, end Windows Explorer (right-click → End task). The taskbar disappears — that’s expected.
  2. Run new task → type cmd → tick administrative privileges → OK.
  3. In the Command Prompt, run:
cd /d %userprofile%\AppData\Local
del IconCache.db /a
  1. Back in Task Manager, Run new taskexplorer.exe → OK to restart the shell. Windows rebuilds the cache and icons reappear.

Fix 3: Re-register the shell apps with PowerShell

If the taskbar is still unresponsive, re-register the packaged apps for your account. Open PowerShell (Task Manager → Run new taskpowershell) and re-register all built-in packages for the current user:

Get-AppxPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}

Some packages may report errors you can ignore — they’re already registered. Sign out and back in, then check the taskbar. (You can verify the shell host is present with Get-AppxPackage *ShellExperienceHost*.)

Fix 4: Repair system files, then check for the known XAML bug

Corrupt system files can keep the shell from drawing. Open Command Prompt as administrator and run:

DISM /Online /Cleanup-Image /RestoreHealth
sfc /scannow

Restart afterward. If the freeze started after a July 2025 or later monthly update on Windows 11 24H2 or 25H2, you may be hitting Microsoft’s documented issue where Explorer, the taskbar, Start, and Search fail because XAML packages don’t register in time (KB5072911 — mostly affects managed/enterprise and virtual-desktop devices). The fix is to install the latest cumulative update: Settings → Windows Update → Check for updates.

FAQ

The taskbar freezes again every few minutes. Try turning off taskbar features that have caused repeated hangs for some users: right-click the taskbar → Taskbar settings → turn off Widgets and, if you have multiple monitors, Show my taskbar on all displays. Test for a while.

Restarting Explorer fixes it but it comes back after every reboot. That points to a startup-timing or update issue (Fix 4) rather than a one-off hang. Make sure Windows is fully updated and run the SFC/DISM repair.

Only the system tray / clock area is dead. Still an Explorer-side problem. Restart Windows Explorer (Fix 1); if it persists, re-register the shell apps (Fix 3).

Sources: Microsoft Learn — Troubleshoot Start menu errors, Microsoft Support — KB5072911: Explorer, the Start menu, and other XAML-dependent apps might not start

↑↓ navigate · ↵ open · Esc close See all results →