Knowledge Base > Windows Systems > Troubleshooting > Part 1

File Explorer Freezing on Windows 11 [Part 1 of 2]

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

  1. Press Ctrl + Shift + Esc to open Task Manager
  2. Find Windows Explorer in the list
  3. Right-click and select Restart

Method 2: Command Line

  1. Press Win + R, type cmd, press Enter
  2. 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.

  1. Open File Explorer
  2. Click the three dots in the toolbar > Options
  3. In the General tab, under Privacy, click Clear
  4. Click OK

Fix 3: Disable Quick Access

Quick Access tries to load recently used files and folders, which can hang if something is wrong.

  1. Open File Explorer Options (search in Start menu)
  2. Under Open File Explorer to, change from Quick access to This PC
  3. Uncheck Show recently used files
  4. Uncheck Show frequently used folders
  5. Click Apply > OK

Deeper Fixes

Fix 4: Run System File Checker

Corrupted system files can cause Explorer issues.

  1. Open Terminal or Command Prompt as Administrator
  2. Run:
sfc /scannow
  1. Wait for completion (can take 10-30 minutes)
  2. 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.

  1. Open PowerShell as Administrator
  2. 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:

  1. Download ShellExView from NirSoft
  2. Run it and sort by Company
  3. Look for non-Microsoft extensions
  4. Disable suspicious ones (right-click > Disable Selected Items)
  5. 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

  1. Press Win + R, type services.msc, press Enter
  2. Find Windows Search
  3. Right-click > Restart

Option B: Disable Windows Search (Drastic)

If Search keeps causing problems:

  1. Open services.msc
  2. Find Windows Search
  3. Right-click > Properties
  4. Set Startup type to Disabled
  5. Click Stop
  6. 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:

  1. Open Settings > Windows Update > Update history
  2. Click Uninstall updates
  3. Find the most recent update before the issue started
  4. Uninstall it

Create a New User Profile

Sometimes user profile corruption causes the issue.

  1. Open Settings > Accounts > Other users
  2. Click Add account > I don't have this person's sign-in information
  3. Click Add a user without a Microsoft account
  4. Create a new local account
  5. 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:

  1. Open Settings > System > Recovery
  2. Click Reset this PC
  3. Choose Keep my files
  4. Select Local reinstall

This reinstalls Windows while preserving your personal files. You will need to reinstall applications.


TL;DR

Issue Fix
Quick freezeRestart Explorer via Task Manager (Ctrl+Shift+Esc)
Frequent freezesClear Explorer history, disable Quick Access
Persistent freezingRun SFC and DISM, check shell extensions with ShellExView
Freezes after updatesUninstall recent Windows updates
Nothing worksCreate new user profile or Reset Windows

Resources