Start Menu and Taskbar Not Responding — Top 3 Fixes
The Start menu and taskbar freezing or not clicking is usually a Windows Explorer crash. Here are the three real fixes, from most to least common.
1. Windows Explorer has crashed (most common cause)
What's actually happening here is that explorer.exe — the process that draws your taskbar, Start menu, system tray, and even the desktop icons — has either hung or crashed entirely. You can still move your mouse, but clicking the Start button or taskbar does nothing. Sometimes the taskbar just shows a white rectangle.
This happened to me on Windows 11 22H2 after leaving the PC on for three days. The shell became unresponsive because a background app leaked handles. The quickest way to confirm: press Ctrl+Shift+Esc to open Task Manager. If Task Manager itself is slow to open, wait or use Ctrl+Alt+Del and pick Task Manager from there.
Inside Task Manager, look for Windows Explorer under the Processes tab. If you see it there, right-click it and select Restart. The screen will flicker and the taskbar will reload. If you don't see it, click File > Run new task, type explorer.exe, and hit Enter. That restarts the shell from scratch.
Why this works
Restarting explorer.exe unloads all the DLLs and shell extensions that were stuck. It's not a deep fix — it just kills the deadlock. If the problem comes back every few hours, the real cause is something else (see next sections). But for a one-off freeze, this is all you need.
2. Corrupted system files or Windows image
If restarting explorer only helps for five minutes, or you see repeated crashes with event ID 1000 or 1001 in Event Viewer (under Windows Logs > Application), the shell experience host or a system file is damaged. The most common scenario: you ran a system cleaner like CCleaner, or a Windows update failed mid-install, leaving registry keys or system files in an inconsistent state.
The fix here is a two-step system file check you should run from an elevated Command Prompt:
- Press Win+R, type
cmd, then press Ctrl+Shift+Enter to run as Administrator. - Run
DISM /Online /Cleanup-Image /RestoreHealth. This repairs the component store — the source Windows uses to fix files. It takes 5–10 minutes. Don't cancel it. - After that finishes, run
sfc /scannow. This checks and replaces corrupted system files. It'll take 15–20 minutes on a mechanical drive, faster on an SSD. - Reboot. Then restart explorer again as described in fix #1.
Skip the sfc /scannow step if DISM fails — that means the corruption is deeper, and you'll need a repair install or in-place upgrade using the Windows 11/10 Media Creation Tool. But 90% of the time, running both in order clears the corruption.
Why the order matters
DISM needs a healthy source; sfc /scannow uses that source to replace files. If you run sfc first, it might try to fix files from a corrupted component store and fail silently. Always DISM first, sfc second. The reason step 3 works is that Windows caches the healthy files after DISM rebuilds the store.
3. Third-party shell extensions or outdated drivers
This is the annoying one — something you installed is injecting a DLL into the explorer process and causing a conflict. The classic suspects:
- Dropbox or Google Drive: Their overlay icons in Explorer often break on Windows 11 version 22H2 and later. Uninstall the app, restart explorer, see if the Start menu comes back.
- 7-Zip or WinRAR: The context menu extensions can hang if the archive parsing code encounters a malformed file. Try disabling the shell extension via
ShellExView(NirSoft, free) and reboot. - Graphics drivers: Intel or NVIDIA drivers with broken WDDM 3.0 support can freeze the DWM (Desktop Window Manager). If you just updated your GPU driver, roll it back. Specifically, NVIDIA driver 531.18 had a known bug that killed the taskbar — upgrade to 531.41 or later.
To test without uninstalling everything: boot into Safe Mode (hold Shift while clicking Restart from the login screen, then Troubleshoot > Advanced options > Startup Settings > Restart > choose Safe Mode). If the Start menu works fine in Safe Mode, a third-party extension is the culprit. Then use a process of elimination — disable startup items one by one via Task Manager's Startup tab, reboot each time, until the freeze stops.
One more thing: the Search service
On Windows 10 and early Windows 11 builds, the Windows Search service can deadlock the taskbar. If the above fixes didn't help, open Services (services.msc), find Windows Search, right-click, select Stop. If the taskbar immediately becomes responsive, set the service to Disabled (you can re-enable it later). Search won't work, but your Start menu will. The real fix is to rebuild the search index via Indexing Options, but that's a separate article.
Quick-reference summary
| Cause | Symptom | Fix |
|---|---|---|
| Explorer crash | Taskbar shows nothing, Start won't open, but mouse moves | Restart explorer.exe via Task Manager |
| Corrupted system files | Freeze returns minutes after restart, event ID 1000/1001 | DISM then sfc /scannow from admin cmd |
| Third-party extensions or drivers | Works in Safe Mode, fails normally | Uninstall shell extensions or roll back GPU driver |
Was this solution helpful?