Explorer.exe crashes after Windows 11 23H2 update

Windows Errors Beginner 👁 9 views 📅 Jun 22, 2026

Your file explorer keeps crashing? I know it's maddening. The fix is usually clearing the thumbnail cache or disabling a bad shell extension. Here's how.

Let's fix that crash

I know this error is infuriating. You're just trying to open a folder or right-click a file, and boom — the whole taskbar disappears for a second and comes back. That's explorer.exe crashing. Here's how to stop it.

Step 1: Clear the thumbnail cache

  1. Open File Explorer (if it stays open long enough) or press Win + R to open Run.
  2. Type %localappdata%\Microsoft\Windows\Explorer and hit Enter.
  3. Look for a folder called thumbcache_*.db files. Don't be scared — they're just thumbnails.
  4. Delete everything in that folder. Yes, all of it. You might need to close all explorer windows first.
  5. Restart your PC or restart explorer.exe from Task Manager.

This works about 60% of the time. The crash happens when the thumbnail cache gets corrupted — usually after a major Windows update like 23H2. I've seen it happen on Windows 11 version 23H2 build 22631, but also on Windows 10 22H2.

Step 2: Disable suspicious shell extensions

If the cache trick didn't work, a shell extension is likely the culprit. Shell extensions are little plugins that add stuff to your right-click menu (like 7-Zip, WinRAR, NVIDIA, or cloud sync tools). When they go bad, they take down explorer.exe with them.

Download a free tool called ShellExView from NirSoft. It's tiny and safe. Run it, then:

  1. Sort by Type — look for entries that say "Context Menu" or "Property Sheet".
  2. Disable everything that isn't made by Microsoft. Start with anything from NVIDIA, Adobe, Google, or Cloud services (OneDrive, Dropbox, Google Drive).
  3. Restart explorer.exe.
  4. If the crash stops, re-enable extensions one by one until you find the bad one.

In my years running a help desk blog, the most common offender is the NVIDIA shell extension — nvdspcpl.dll or nvcpl.dll. Disable that first. I've also seen Google Drive and Dropbox cause this after an update.

Why does this happen?

Explorer.exe is the Windows shell. It handles the desktop, taskbar, file windows, and right-click menus. When a thumbnail file is corrupt, or a shell extension crashes, explorer.exe can't recover — it just dies and restarts itself. Microsoft improved crash recovery in Windows 10 and 11, but it's still ugly.

The thumbnail cache lives in %localappdata%\Microsoft\Windows\Explorer. Windows rebuilds it automatically when you delete it. No harm done.

Shell extensions are loaded into explorer.exe's memory. If one is buggy or incompatible with your current Windows version, it can crash the whole process. It's like inviting a chaotic guest into your house — one wrong move and everything breaks.

Less common variations

Crash when opening specific folder types

If explorer.exe only crashes when you open a folder full of videos, images, or music files, it's almost certainly the thumbnail cache. Windows uses a codec to generate thumbnails for these files, and if that codec crashes, explorer.exe goes down. Clear the cache as shown above. If that fails, try installing Media Feature Pack (for Windows N editions) or updating your graphics driver.

Crash when using search

Search crashes explorer.exe? That's the Windows Search indexer. Rebuild the index:

  1. Open Control Panel > Indexing Options.
  2. Click Advanced.
  3. Under Troubleshooting, click Rebuild. Yes, it takes a few hours.

Crash after connecting an external drive

This one's weird but real. Some USB drives or SD cards have a corrupted file system that crashes explorer.exe when you plug them in. Run chkdsk /f X: (replace X with your drive letter) from an admin command prompt. That fixed it for me on a customer's machine with a faulty thumb drive.

How to prevent it from coming back

  • Don't use thumbnail-heavy folders as your main workspace. If you work with thousands of images, get a dedicated image viewer like IrfanView or FastStone.
  • Keep your graphics driver updated. NVIDIA and AMD release drivers that fix stability issues. Use their official tools, not Windows Update.
  • Limit shell extensions. Uninstall old programs you don't use. Especially avoid installing multiple cloud sync clients (OneDrive + Dropbox + Google Drive = trouble).
  • Do a clean boot once a month to check if any third-party service is silently crashing explorer.exe. Use msconfig to disable all non-Microsoft services temporarily.
  • Run SFC and DISM if you see repeated crashes after updates. Open Command Prompt as admin and run:
sfc /scannow
DISM /Online /Cleanup-Image /RestoreHealth

This fixes corrupted system files that might be affecting explorer.exe. I've seen it resolve crashes that none of the other steps could touch.

If none of these work, you might be dealing with a deeper issue — like a failing hard drive or faulty RAM. But honestly, 9 times out of 10, it's the thumbnail cache or a bad shell extension. Start there.

Was this solution helpful?