How to Restart File Explorer in Windows (And Why It Works)
File Explorer is the backbone of navigating Windows. It manages your taskbar, desktop icons, Start menu rendering, and every folder window you open. When it freezes, crashes, or starts behaving strangely, restarting it is often the fastest fix — no full system reboot required.
What File Explorer Actually Is
File Explorer isn't just a file browser. In Windows, it runs as a process called explorer.exe, and it's responsible for the entire Windows shell — meaning the desktop environment itself. When explorer.exe stalls, you might see:
- A frozen or unresponsive taskbar
- Desktop icons that disappear or won't click
- Folder windows that won't open or refresh
- The Start menu failing to launch
Restarting this single process clears its memory state and forces it to reload cleanly, without touching your other running applications or open documents.
Method 1: Restart File Explorer via Task Manager 🖥️
This is the most reliable method and works across Windows 10 and Windows 11.
- Press Ctrl + Shift + Esc to open Task Manager directly
- If you see the compact view, click More details at the bottom
- In the Processes tab, scroll down to find Windows Explorer
- Right-click on it and select Restart
Task Manager kills the explorer.exe process and immediately relaunches it. Your desktop will flicker briefly — that's normal. The entire shell refreshes in seconds.
Alternative way to open Task Manager: Right-click the taskbar and select Task Manager, or press Ctrl + Alt + Delete and choose it from the menu.
Method 2: Restart File Explorer via Command Prompt or PowerShell
If your taskbar is completely frozen and Task Manager won't respond, the command line gives you a manual override.
- Press Windows key + R, type
cmdorpowershell, and hit Enter - Run this command to stop the process:
taskkill /f /im explorer.exe - Your desktop and taskbar will disappear — this is expected
- Then run this command to restart it:
start explorer.exe
The two-step approach gives you more control, and the brief moment between commands (where the desktop goes blank) is harmless. Everything relaunches on the second command.
Method 3: Use the Run Dialog as a Workaround
If both your taskbar and Task Manager are unresponsive but keyboard shortcuts still work:
- Press Ctrl + Alt + Delete and open Task Manager from the security screen
- Click File > Run new task
- Type
explorer.exeand press Enter
This method is especially useful when explorer.exe has crashed entirely rather than just frozen — it's not currently running at all, so there's nothing to restart, only something to relaunch.
Method 4: Create a Restart Script for Repeated Use
If you find yourself restarting File Explorer regularly, a simple batch file saves time.
- Open Notepad
- Paste the following:
@echo off taskkill /f /im explorer.exe start explorer.exe exit - Save the file with a
.batextension (e.g.,restart-explorer.bat) - Double-click it whenever needed
This is particularly useful for developers or power users who apply registry edits or shell customizations that require an Explorer restart to take effect — without needing a full reboot.
What Triggers File Explorer to Need a Restart
Understanding the cause helps you decide how urgently to act and whether a restart will actually fix the problem.
| Trigger | What's Happening | Does a Restart Fix It? |
|---|---|---|
| Shell extensions conflicting | A third-party program hooks into Explorer and causes instability | Often yes |
| Memory leak over time | Explorer accumulates RAM usage over long sessions | Yes, temporarily |
| Registry changes applied | Shell settings need a reload to activate | Yes |
| Corrupted thumbnail cache | Explorer struggles to render folder previews | Sometimes |
| Underlying Windows Update | System files changed mid-session | Requires full reboot |
A simple restart resolves most day-to-day issues. If the problem returns quickly and repeatedly, the root cause may be a conflicting shell extension, a damaged system file, or a deeper Windows issue that needs further diagnosis with tools like sfc /scannow (System File Checker).
Variables That Affect Your Experience
Not every restart behaves identically. A few factors shape how this plays out on your machine:
- Windows version: Windows 11 has a slightly different explorer.exe architecture than Windows 10, and some customization tools interact with it differently
- Third-party software: Shell extensions from tools like file archivers, cloud sync clients, or antivirus programs integrate deeply with explorer.exe — these can cause instability that persists after a restart
- User account type: Standard accounts vs. administrator accounts may have different permissions affecting how Task Manager interacts with system processes
- System resource pressure: On low-RAM systems, explorer.exe is more prone to sluggishness under heavy load, making restarts more of a recurring need than a one-time fix
When Restarting Isn't Enough 🔧
A restart clears the process state but doesn't repair anything. If Explorer keeps crashing:
- Run sfc /scannow in an elevated Command Prompt to check for corrupted Windows system files
- Use DISM /Online /Cleanup-Image /RestoreHealth for deeper image repair
- Check Event Viewer (eventvwr.msc) for crash logs tied to explorer.exe — these often name the specific DLL or extension causing the fault
- Consider a clean boot to isolate whether a startup program is the culprit
How aggressively you need to troubleshoot depends on how often the problem recurs, what software is installed on your system, and how your Windows installation has been configured over time — those details vary significantly from one machine to the next.