How to Fix Windows 11 File Explorer Not Responding or Keeps Crashing — The Quick Access Cache Nobody Clears

By Adhen Prasetiyo

Wednesday, April 22, 2026 • 8 min read

Microsoft Edge browser Task Manager showing high memory and CPU usage across multiple processes

File Explorer on Windows 11 has a habit of choosing the worst possible moment to stop working.

You’re trying to find a file you need for a meeting that starts in three minutes. You double-click the File Explorer icon. The window opens, the title bar says “File Explorer” — and then nothing. The content area stays blank. The spinning circle appears. The title bar updates to “File Explorer (Not Responding).” You wait. And wait. You consider screaming.

Or maybe File Explorer opens fine, but the moment you right-click a file to rename it or open it with a specific program, the entire window freezes solid. Or it was working perfectly until you opened your eighth File Explorer tab, and now it’s consuming 1.2GB of RAM and dragging your entire system down.

The underlying cause is usually one of three things: corrupted Quick Access data, a broken shell extension from a third-party app, or the tabbed interface leaking memory. None of these will fix themselves, and restarting explorer.exe is just a band-aid that buys you five minutes.

The Emergency Fix: Restart Explorer.exe

If File Explorer is frozen right now and you need it working immediately, do this:

Press Ctrl + Shift + Esc to open Task Manager. Find Windows Explorer in the list (not “File Explorer” — it’s listed as “Windows Explorer”). Right-click it and select Restart.

Your screen will go blank for a moment — the taskbar, desktop icons, and all File Explorer windows will disappear briefly. Within 3-5 seconds, everything reappears fresh. Any frozen File Explorer windows are gone, replaced by a clean, responsive process.

This works because explorer.exe is a single process that handles File Explorer, the taskbar, the Start menu, and the desktop. Restarting it kills everything and starts clean.

If explorer.exe doesn’t appear in Task Manager (it crashed completely), click File → Run new task, type explorer.exe, and press Enter to launch it manually.

Now let’s fix the actual problem so you don’t have to keep doing this.

The Quick Access Cache Problem

When you open File Explorer, the first thing it does is load Quick Access — the panel showing your recently used files and pinned folders. Windows stores this data in cache files, and these cache files can become corrupted from unexpected shutdowns, disk errors, or just accumulated entropy over months of use.

When the cache is corrupted, File Explorer tries to load it, fails, tries again, fails again, and either freezes or crashes. Since Quick Access is the first thing that loads, the corruption hits you the moment you open File Explorer.

The fix:

Navigate to these two folders and delete everything inside them:

%AppData%\Microsoft\Windows\Recent\AutomaticDestinations

%AppData%\Microsoft\Windows\Recent\CustomDestinations

You can reach them by pasting each path into File Explorer’s address bar (or into the Run dialog with Windows + R if File Explorer is too frozen to use).

Select all files (Ctrl + A) and delete them. Some files might be “in use” — skip those, they’ll get replaced on their own.

These folders contain jump list data and recent file history. Deleting them doesn’t delete any actual files — it just clears the list of “recently opened” items. Windows rebuilds the cache automatically as you use File Explorer going forward.

After deleting the cache, restart explorer.exe from Task Manager. File Explorer should now open instantly without freezing.

Prevention: to stop Quick Access from causing future problems, change what File Explorer opens to by default. Open File Explorer → click the three dots (···) at the top → Options → change “Open File Explorer to” from “Quick Access” (or “Home”) to “This PC”. Now File Explorer opens to your drives list instead of Quick Access, bypassing the entire cache-loading process.

The Shell Extension Nightmare

If File Explorer crashes specifically when you right-click a file or folder, the problem is almost certainly a broken shell extension.

Shell extensions are DLL files that third-party programs register with Windows to add items to the right-click context menu. When you right-click a file, Windows loads every registered shell extension to build the menu. If any of those DLLs is corrupted, from an uninstalled program, or incompatible with your Windows version, the entire menu — and File Explorer with it — crashes.

Common culprits:

  • Cloud storage clients (Dropbox, Google Drive, OneDrive) — they add “Sync” or “Share” options to the context menu
  • Antivirus software — they add “Scan with [product]” to the menu
  • Archive tools (7-Zip, WinRAR, WinZip) — they add “Extract here” and “Add to archive” options
  • Media applications — VLC, Plex, and others add “Play with [app]” options
  • Uninstalled programs — the program is gone but its shell extension DLL registration remains in the registry, pointing to a file that no longer exists

Diagnosing the guilty extension:

Download ShellExView from NirSoft — it’s free, portable (no installation needed), and one of the most useful Windows utilities ever made.

Run it and you’ll see a list of every registered shell extension on your system. Sort by Company — Microsoft entries are typically safe. Look for third-party entries, especially ones from companies whose software you’ve uninstalled.

Select all non-Microsoft extensions and press F7 to disable them. Restart File Explorer. If the crashing stops, one of those extensions was the culprit.

Now re-enable them one at a time (select, press F7 to enable, restart Explorer). When the crashing returns, you’ve found the guilty extension. Either uninstall the associated program properly, or leave that specific extension disabled permanently.

The Tabbed Explorer Memory Leak

Windows 11’s tabbed File Explorer is a genuinely useful feature — until it starts consuming absurd amounts of memory.

The problem: each tab you open allocates memory for its contents, icons, thumbnails, and metadata. When you close a tab, some of this memory is supposed to be released. Due to bugs in the tab management system, some of it never gets released. Open and close 20 tabs over a work session, and explorer.exe can grow to 800MB-1.2GB of RAM usage.

At that point, everything File Explorer does becomes sluggish — opening folders takes seconds, thumbnails don’t load, and eventually it freezes.

Check your explorer.exe memory usage: open Task Manager → Details tab → find explorer.exe → look at the Memory column. If it’s above 300-400MB and you don’t have dozens of active windows open, the tab leak is active.

Immediate fix: restart explorer.exe from Task Manager. This kills the process and all its leaked memory, starting fresh.

Permanent fix: keep Windows 11 updated. Microsoft has fixed several tab-related memory leaks in updates throughout 2025 and 2026 — specifically in KB5034848 and subsequent patches. If you’re several updates behind, catching up might fix the leak entirely.

Nuclear option: if the leak persists despite updates, you can disable tabs entirely via the Registry Editor. Navigate to:

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced

Create or modify a DWORD value named TabEnabled and set it to 0. Restart explorer.exe. File Explorer will revert to single-window mode with no tabs. Set it back to 1 to re-enable tabs whenever you want.

System File Corruption

If none of the above fixes the crashing, the explorer.exe binary itself or its supporting system files might be corrupted.

Open Command Prompt as Administrator and run:

sfc /scannow

This scans all protected system files, including explorer.exe, and replaces any corrupted files with clean cached copies. Takes 10-20 minutes.

Then run:

DISM /Online /Cleanup-Image /RestoreHealth

This repairs the Windows component store that SFC uses as a reference. If the store is corrupted, SFC can’t fix anything — DISM fixes the store first.

After both complete, restart your computer (not just explorer.exe — a full restart) and test File Explorer.

The Long-Term Maintenance That Keeps Explorer Stable

Periodically clear the Quick Access cache. Every few months, delete the contents of the AutomaticDestinations and CustomDestinations folders. It’s the File Explorer equivalent of clearing your browser cache.

Audit your shell extensions annually. Run ShellExView and disable extensions from programs you no longer use. Every extension is code that runs every time you right-click — fewer extensions means faster context menus and fewer chances of a crash.

Restart explorer.exe weekly. If you leave your computer running for days or weeks without restarts, explorer.exe accumulates memory from the tab leak and other minor leaks. A quick restart from Task Manager (or a full computer restart) clears this.

Keep Windows updated. Microsoft has been actively fixing File Explorer bugs throughout 2025 and 2026. Each update addresses specific crash scenarios. Staying current means benefiting from these fixes.

File Explorer is the most-used application on Windows, and when it breaks, it feels like the entire operating system is broken. But the causes are predictable and the fixes are straightforward — corrupted cache, broken extensions, or memory leaks. Clean the cache, audit the extensions, and keep the system updated. That’s it.


If you found this guide helpful, check out our other resources:

Step-by-Step Guide

1

Restart explorer.exe from Task Manager as an immediate fix

Press Ctrl Shift Esc to open Task Manager. Find Windows Explorer in the list of processes. Right-click it and select Restart. This immediately kills and relaunches the explorer.exe process which handles File Explorer, the taskbar, and the desktop. Your open File Explorer windows will close but the taskbar will reappear within a few seconds. If File Explorer was frozen due to a temporary glitch this restart resolves it immediately. If it freezes again within minutes the problem is deeper and requires the following steps.

2

Clear the Quick Access cache to fix corrupted history

Quick Access keeps a history of recently accessed files and frequently used folders. If this cache becomes corrupted it can cause File Explorer to freeze or crash every time it tries to load. Open File Explorer and go to the address bar. Type %AppData%\Microsoft\Windows\Recent\AutomaticDestinations and press Enter. Select all files in this folder and delete them. Then go to %AppData%\Microsoft\Windows\Recent\CustomDestinations and delete all files there too. These folders contain jump list and Quick Access cache data. Deleting them forces Windows to rebuild the cache fresh. Restart File Explorer from Task Manager after clearing the cache.

3

Change File Explorer to open to This PC instead of Quick Access

If Quick Access continues causing crashes you can bypass it entirely. Open File Explorer and click the three dots menu at the top then select Options. In the General tab change Open File Explorer to from Quick Access or Home to This PC. Click Apply then OK. This prevents File Explorer from loading the Quick Access panel on startup which eliminates the most common crash trigger. You can still access Quick Access from the sidebar but File Explorer will no longer try to load it automatically every time you open a new window.

4

Identify and remove broken shell extensions

Shell extensions are plugins that third-party applications add to the File Explorer right-click context menu and navigation pane. When a shell extension from an uninstalled or corrupted program remains it can crash File Explorer every time you right-click a file or folder. Download ShellExView from nirsoft.net which is free. Run it and sort by Type. Look for third-party shell extensions especially from programs you have uninstalled or no longer use. Disable suspicious extensions by selecting them and pressing F7. Restart File Explorer and test if the crashing stops. Re-enable extensions one by one to identify which specific one was causing the crash.

5

Fix the tabbed File Explorer memory leak

The tabbed interface introduced in Windows 11 22H2 has a known memory leak where each new tab consumes memory that is never fully released. After opening and closing many tabs over a session File Explorer can consume over 1GB of RAM and become unresponsive. The immediate fix is to restart File Explorer from Task Manager which releases all the leaked memory. For a permanent fix make sure Windows 11 is fully updated as Microsoft has patched several tab-related memory leaks in 2025 and 2026 updates. If the problem persists despite updates you can disable tabs by opening the Registry Editor navigating to HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced and setting TabEnabled to 0 then restarting File Explorer.

Frequently Asked Questions

Why does File Explorer freeze when I right-click a file?
Right-click freezes are almost always caused by a broken shell extension. Third-party apps like cloud storage clients, antivirus software, archive tools, and media players add items to the right-click context menu via shell extensions. If the extension's DLL file is corrupted, missing, or from an uninstalled program, the entire context menu hangs while Windows tries to load it. Use ShellExView from nirsoft.net to identify and disable the problematic extension. The new Windows 11 context menu adds an extra layer of complexity because it loads both the new simplified menu and prepares the legacy menu simultaneously which can double the impact of a broken extension.
Is it safe to delete the Quick Access cache files?
Yes it is completely safe. The files in the AutomaticDestinations and CustomDestinations folders are just cached data about your recently opened files and pinned Quick Access items. Deleting them does not delete any actual files or documents. Windows will automatically rebuild the cache as you use File Explorer. Your pinned Quick Access items will be removed and you will need to re-pin them manually but no data is lost.
Why does File Explorer use so much RAM on Windows 11?
The tabbed File Explorer feature introduced in Windows 11 version 22H2 has had several memory leak bugs where opening and closing tabs does not fully release the memory they used. Over extended sessions this can cause explorer.exe to consume 500MB to over 1GB of RAM. Microsoft has fixed many of these leaks in subsequent updates so keeping Windows 11 fully updated is the best solution. If the problem persists you can disable tabs via the registry or simply restart File Explorer from Task Manager periodically to reclaim the leaked memory.
Should I use the classic File Explorer instead of the new one?
Windows 11 does not offer a built-in option to revert to the Windows 10 File Explorer. Third-party tools like ExplorerPatcher can restore the classic interface but they are unofficial and may break after Windows updates. For most users the better approach is to fix the specific issue causing problems with the new File Explorer rather than trying to replace it entirely. Setting File Explorer to open to This PC instead of Quick Access and keeping Windows updated resolves the majority of stability issues.
Adhen Prasetiyo

Research Bug bounty at javahack team

Research Bug bounty Profesional

Web Development Research Bug Hunter
View all articles →