When your file manager becomes your worst enemy
You click a folder. Nothing happens. You click again. Still nothing. The toolbar buttons stop working. Maybe the whole window goes white with "Not Responding" in the title bar.
Welcome to File Explorer on Windows 11, where the most basic file management task can turn into a waiting game.
This has been a persistent issue across multiple Windows 11 updates, and Microsoft keeps "fixing" it only for it to break again. Here is how to deal with it.
The Problem
File Explorer freezing has been reported across multiple Windows 11 versions, with symptoms including:
- Toolbar buttons becoming unclickable
- Mouse and keyboard inputs not registering
- White screen with "Not Responding" in the title bar
- Entire interface freezing for 10-60 seconds
- Explorer.exe crashing and restarting (icons disappear briefly)
The May 2025 update (KB5058411) made this particularly bad, but the issue has been present in various forms since Windows 11 launched.
Quick Fixes
Fix 1: Restart File Explorer (Without Rebooting)
When Explorer freezes, you do not need to restart your whole PC.
Method 1: Task Manager
- Press Ctrl + Shift + Esc to open Task Manager
- Find Windows Explorer in the list
- Right-click and select Restart
Method 2: Command Line
- Press Win + R, type
cmd, press Enter - Run these commands:
taskkill /f /im explorer.exe
start explorer.exe
Your taskbar will disappear briefly and come back. Explorer should work again.
Fix 2: Clear File Explorer History
Corrupted history can cause freezing.
- Open File Explorer
- Click the three dots in the toolbar > Options
- In the General tab, under Privacy, click Clear
- Click OK
Fix 3: Disable Quick Access
Quick Access tries to load recently used files and folders, which can hang if something is wrong.
- Open File Explorer Options (search in Start menu)
- Under Open File Explorer to, change from Quick access to This PC
- Uncheck Show recently used files
- Uncheck Show frequently used folders
- Click Apply > OK
Deeper Fixes
Fix 4: Run System File Checker
Corrupted system files can cause Explorer issues.
- Open Terminal or Command Prompt as Administrator
- Run:
sfc /scannow
- Wait for completion (can take 10-30 minutes)
- If it finds issues, restart and run it again to verify fixes
Fix 5: Run DISM
If SFC does not help, try DISM to repair the Windows image.
DISM /Online /Cleanup-Image /CheckHealth
DISM /Online /Cleanup-Image /ScanHealth
DISM /Online /Cleanup-Image /RestoreHealth
Run these in order. RestoreHealth can take 20+ minutes.
Fix 6: Reset File Explorer to Default
PowerShell can reset Explorer settings that might be causing issues.
- Open PowerShell as Administrator
- Run:
Get-AppxPackage Microsoft.Windows.FileExplorer | Reset-AppxPackage
This resets the Explorer app package without affecting your files.
Fix 7: Check for Problematic Shell Extensions
Third-party software often adds "shell extensions" to Explorer (right-click menu items, preview handlers, etc.). These can cause freezing.
Diagnose with ShellExView:
- Download ShellExView from NirSoft
- Run it and sort by Company
- Look for non-Microsoft extensions
- Disable suspicious ones (right-click > Disable Selected Items)
- Restart Explorer and test
Common culprits:
- Cloud storage integrations (OneDrive, Dropbox, Google Drive context menus)
- Antivirus right-click scanners
- Archive utilities (7-Zip, WinRAR context menus)
- GPU driver context menu items
If disabling an extension fixes the issue, you have found your culprit. Update or uninstall that software.
Windows Search Service Fix
A known issue ties File Explorer freezing to the Windows Search service. When Search hangs, Explorer hangs with it.
Option A: Restart Windows Search
- Press Win + R, type
services.msc, press Enter - Find Windows Search
- Right-click > Restart
Option B: Disable Windows Search (Drastic)
If Search keeps causing problems:
- Open services.msc
- Find Windows Search
- Right-click > Properties
- Set Startup type to Disabled
- Click Stop
- Click OK
Tradeoff: This disables the Start menu search indexing. You can still search, but it will be slower.
If All Else Fails
Uninstall Recent Updates
If the freezing started after a specific update:
- Open Settings > Windows Update > Update history
- Click Uninstall updates
- Find the most recent update before the issue started
- Uninstall it
Create a New User Profile
Sometimes user profile corruption causes the issue.
- Open Settings > Accounts > Other users
- Click Add account > I don't have this person's sign-in information
- Click Add a user without a Microsoft account
- Create a new local account
- Log into the new account and test File Explorer
If it works in the new account, the issue is your user profile. You can migrate your data to the new account.
Reset Windows (Keep Files)
Last resort:
- Open Settings > System > Recovery
- Click Reset this PC
- Choose Keep my files
- Select Local reinstall
This reinstalls Windows while preserving your personal files. You will need to reinstall applications.
TL;DR
| Issue | Fix |
|---|---|
| Quick freeze | Restart Explorer via Task Manager (Ctrl+Shift+Esc) |
| Frequent freezes | Clear Explorer history, disable Quick Access |
| Persistent freezing | Run SFC and DISM, check shell extensions with ShellExView |
| Freezes after updates | Uninstall recent Windows updates |
| Nothing works | Create new user profile or Reset Windows |
Resources
- ShellExView - Diagnose problematic shell extensions
- Microsoft: Fix File Explorer if it won't open or start
- Windows 11 Known Issues - Check if your issue is acknowledged