How to Restart explorer.exe (Windows Shell) in Windows 10 and 11

·
5 min read

Help Desk Geek is reader-supported. We may earn a commission when you buy through links on our site. Learn more.

Your taskbar is frozen, your desktop icons have vanished, or you’ve just made a registry tweak and need the Windows Shell to reload. Restarting explorer.exe fixes all of these without rebooting your entire PC. Explorer.exe is the process that runs the Windows Shell: the taskbar, Start menu, desktop, File Explorer windows, and the notification area (system tray).

Method 1: Use Task Manager’s Restart Option (Easiest)

This is the right method for most people. Task Manager has a dedicated Restart command for Windows Explorer that kills and relaunches the shell in one click, with no manual steps needed.

Step 1: Open Task Manager

  1. Press Ctrl + Shift + Esc to open Task Manager directly.

2. If Task Manager opens in compact mode, click More details at the bottom to expand it.

Windows 11 Task Manager open on the Processes tab in full detail view, showing the Apps and Windows processes sections

Step 2: Restart Windows Explorer

  1. On the Processes tab, look under Apps or Windows processes for Windows Explorer (some builds show it as File Explorer).

2. Right-click Windows Explorer and select Restart.

Windows 11 Task Manager Processes tab with Windows Explorer right-clicked and the Restart option highlighted in the context menu

The taskbar, desktop icons, and Start menu will briefly disappear, then reappear within a few seconds. Any open File Explorer windows will close, but your other running apps (browser, Office, etc.) stay open.

Note: If the first restart doesn’t take because explorer.exe was hanging badly, right-click and restart it once more.

Method 2: When the Taskbar or Start Menu Is Completely Frozen

If you can’t right-click the taskbar or open Start at all, you still have a path in through Task Manager.

Step 1: Open Task Manager with a keyboard shortcut

  1. Press Ctrl + Shift + Esc. This opens Task Manager directly, bypassing the shell entirely.

2. If you only see a compact list, click More details.

Step 2: Restart or relaunch Windows Explorer

  1. Go to the Processes tab and find Windows Explorer.

2. Right-click it and choose Restart.

If Windows Explorer doesn’t appear in the list at all (explorer.exe has crashed completely):

  1. In Task Manager, click File > Run new task.

2. Type explorer.exe and press Enter.

Windows 11 Task Manager with File > Run new task dialog open, showing explorer.exe typed in the Open field

The Windows Shell will relaunch and your taskbar and desktop will reappear.

Method 3: Command Line (For Scripting or When Task Manager Is Unavailable)

This method is useful if you’re applying multiple registry tweaks via a batch file, working in a remote session, or Task Manager itself isn’t responding.

Using Command Prompt

  1. Press Windows + R, type cmd, and press Enter.

2. Run the following two commands in sequence:

[taskkill](http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/taskkill.mspx?mfr=true) /f /im explorer.exe
start explorer.exe
Windows 11 Command Prompt window showing the taskkill and start explorer.exe commands with output

Using PowerShell

  1. Press Windows + R, type powershell, and press Enter.

2. Run:

Stop-Process -Name explorer -Force
Start-Process explorer.exe

Both approaches terminate the shell process and immediately relaunch it. The desktop will go black for a moment, then come back.

When Does Restarting Explorer.exe Actually Help?

Restarting the Windows Shell is the right move in these situations:

– You’ve edited the registry to change a shell setting (context menus, taskbar behavior, File Explorer options) and want the change to take effect without rebooting

File Explorer windows are sluggish or consuming high CPU and you want to clear the state

– You’re on Windows 11 24H2 and have hit one of the known explorer.exe stability bugs. Restarting the shell is Microsoft’s recommended first step while a patch is applied

Important: Restarting explorer.exe only reloads the Windows Shell. It does not replace a full reboot for changes involving device drivers, Windows services, kernel settings, or Group Policy. Those still require a full restart.

Explorer.exe Keeps Crashing or Restarting in a Loop

If the shell restarts once and then immediately crashes again, the cause is usually one of these:

  • A broken shell extension. A third-party app that hooks into File Explorer (context menu tools, cloud storage clients, antivirus plugins) is crashing the shell on load.

A third-party taskbar or Start menu tool. Utilities like ExplorerPatcher or similar customizers can cause explorer.exe crash loops, especially after a Windows update. Open their settings and check for a compatibility update, or temporarily disable them.

A buggy Windows update. Windows 11 24H2 has had multiple cumulative updates that caused explorer.exe, the taskbar, and Start to crash at sign-in. Go to Settings > Windows Update > Check for updates and install the latest fix. If a specific KB is known to be the culprit, you can remove it via Settings > Windows Update > Update history > Uninstall updates.

If the crash loop persists, boot into Safe Mode (which disables most third-party shell extensions) and uninstall or disable the offending tool. You can also open Event Viewer > Windows Logs > Application and look for explorer.exe crash entries to identify the faulting module.

Conclusion

Method 1, right-clicking Windows Explorer in Task Manager and choosing Restart, handles the vast majority of cases. If the shell is crash-looping rather than just freezing once, a third-party customization tool or a pending Windows 11 update is almost always the real culprit, and no amount of shell restarts will permanently fix it until that’s resolved.