Skip to content
GeneralIntermediate

Windows 11 File Explorer Keeps Restarting While Copying Files – Complete Troubleshooting Guide (Explorer.exe Crash, ucrtbase.dll & 0xC0000409 Fix)

Is Windows 11 File Explorer (Explorer.exe) crashing or restarting repeatedly while copying files? Does your taskbar disappear for a few seconds and then reap...

BI
Bison Technical Team Enterprise IT specialists
Updated 21 Jul 2026 7 min read 0 views

Is Windows 11 File Explorer (Explorer.exe) crashing or restarting repeatedly while copying files? Does your taskbar disappear for a few seconds and then reappear automatically? This comprehensive troubleshooting guide explains how to diagnose and fix Explorer.exe crashes caused by ucrtbase.dll, Exception Code 0xC0000409, corrupted system files, faulty shell extensions, Nitro PDF integration, graphics drivers, damaged thumbnails, storage errors, and Visual C++ runtime issues. Learn how to analyze Event Viewer logs, Reliability Monitor, PowerShell diagnostics, DISM, SFC, CHKDSK, ShellExView, and Robocopy. Follow step-by-step solutions to permanently resolve File Explorer crashes in Windows 11 and improve system stability.


Windows 11 File Explorer Keeps Restarting While Copying Files – Complete Troubleshooting Guide

Introduction

Windows File Explorer (Explorer.exe) is the graphical shell of Windows responsible for managing:

Advertisement
  • Desktop
  • Taskbar
  • Start Menu
  • File Explorer windows
  • Notifications
  • File Copy dialogs

If Explorer crashes, Windows automatically restarts it.

Users generally notice:

  • Taskbar disappears
  • Desktop icons disappear
  • Screen flashes
  • Explorer windows close
  • Taskbar returns after 2–5 seconds

When this happens repeatedly during file copying, it indicates that Explorer.exe has encountered a fatal exception.


Symptoms

Users may experience:

  • Explorer.exe restarting continuously
  • Taskbar disappearing and reappearing
  • Desktop refreshing automatically
  • Copy operation stopping midway
  • Explorer freezing
  • Right-click causing Explorer crash
  • Preview pane causing crashes
  • File thumbnails loading slowly
  • Windows becoming unstable

Real Case Study

A Windows 11 system showed the following Event Viewer entry:

 
Faulting application:
Explorer.EXE

Faulting module:
ucrtbase.dll

Exception Code:
0xC0000409
 

Another application crashed immediately before Explorer:

 
NitroPDF.exe

Faulting Module:
libcef.dll
 

This strongly indicates that Explorer was affected by third-party shell integration rather than Windows itself.


Understanding Explorer.exe

Explorer.exe is not just File Explorer.

It controls:

  • Windows Desktop
  • Start Menu
  • Taskbar
  • Notification Area
  • File Browser
  • Context Menu
  • Copy Dialog
  • Thumbnail Generation

A crash in Explorer affects the entire Windows shell.


What Does ucrtbase.dll Mean?

ucrtbase.dll

Universal C Runtime

Microsoft uses this runtime for thousands of applications.

When Explorer crashes inside ucrtbase.dll, it usually means:

  • another program corrupted memory
  • shell extension failed
  • invalid pointer
  • stack corruption

In many cases, ucrtbase.dll is not the root cause.


Exception Code 0xC0000409

This exception represents:

 
STATUS_STACK_BUFFER_OVERRUN
 

Meaning:

Windows detected memory corruption and terminated Explorer.

Common reasons include:

  • Shell extension bug
  • Third-party Explorer plugin
  • Context menu handler
  • PDF integration
  • Antivirus integration
  • Graphics driver bug

Common Causes

1. Third-party Shell Extensions

Most common cause.

Examples:

  • Nitro PDF
  • Adobe Acrobat
  • WinRAR
  • 7-Zip
  • TeraCopy
  • OneDrive
  • Dropbox
  • Google Drive

2. Corrupted Explorer Cache

Corrupted:

  • thumbnail cache
  • icon cache
  • recent folders

may crash Explorer.


3. Preview Handlers

Previewing:

  • PDF
  • DOCX
  • Images
  • Videos

may invoke faulty preview handlers.


4. Graphics Drivers

Explorer uses GPU acceleration.

Faulty drivers may crash:

  • thumbnail rendering
  • image previews
  • animations

5. Corrupted System Files

Damaged Windows files can trigger Explorer crashes.


6. Visual C++ Runtime Problems

Many applications rely on:

Microsoft Visual C++ Runtime

Corrupted runtime causes application instability.


7. Storage Errors

Bad sectors

NTFS corruption

SSD firmware bugs

can interrupt Explorer.


Step 1 – Confirm Explorer Restart

If:

  • taskbar disappears
  • desktop disappears
  • taskbar returns after few seconds

Explorer.exe has restarted.


Step 2 – Check Event Viewer

Open:

 
Event Viewer

Windows Logs

Application
 

Look for:

 
Explorer.EXE

Application Error

Windows Error Reporting
 

Example:

 
Faulting module:
ucrtbase.dll

Exception:
0xC0000409
 

Step 3 – Check Reliability Monitor

Run:

 
perfmon /rel
 

Review:

  • Windows Explorer Stopped Working
  • Critical Events
  • Faulting Module

Step 4 – Repair Windows

Run:

 
DISM /Online /Cleanup-Image /RestoreHealth
 

After completion:

 
sfc /scannow
 

These commands repair corrupted Windows components.


Step 5 – Check Disk

Scan drive:

 
chkdsk C: /scan
 

Repair:

 
chkdsk C: /f
 

For another drive:

 
chkdsk D: /scan
 

Step 6 – Disable Preview Pane

Explorer

View

Show

Disable:

  • Preview Pane
  • Details Pane

This prevents problematic preview handlers from loading.


Step 7 – Clear Thumbnail Cache

Use Disk Cleanup:

 
cleanmgr
 

Select:

 
Thumbnails
 

Or delete:

 
%LocalAppData%\Microsoft\Windows\Explorer
 

Delete:

 
thumbcache_*.db
 

Step 8 – Test Without Explorer

Instead of Explorer, use:

 
robocopy "D:\Source" "E:\Destination" /E /MT:16 /R:2 /W:2 /TEE /LOG:C:\Copy.log
 

If Robocopy succeeds while Explorer crashes, Explorer is the problem—not the storage device.


Step 9 – Disable Shell Extensions

Use:

ShellExView

Disable:

All non-Microsoft shell extensions.

Restart Explorer.

Test again.


Step 10 – Repair Visual C++

Install or repair:

Microsoft Visual C++ Redistributable

  • x64
  • x86

Latest 2015–2022 package.


Step 11 – Update Graphics Driver

Update:

  • Intel
  • AMD
  • NVIDIA

If issue started after an update:

Rollback driver.


Step 12 – Memory Test

Run:

 
mdsched.exe
 

Restart

Allow memory diagnostics.


Step 13 – Clean Boot

Run:

 
msconfig
 

Hide Microsoft services.

Disable remaining services.

Restart.

If Explorer becomes stable:

Enable services one-by-one.


Nitro PDF May Be the Real Culprit

In the investigated case:

 
NitroPDF.exe

↓

libcef.dll crash

↓

Explorer.exe crash

↓

ucrtbase.dll
 

Possible Nitro integrations:

  • Explorer Preview
  • Context Menu
  • PDF Thumbnail
  • Preview Handler

Temporarily:

  • Disable integration
  • Uninstall Nitro
  • Test Explorer stability

PowerShell Diagnostic Commands

View Recent Explorer Errors

 
Get-WinEvent -LogName Application -MaxEvents 30 |
Where-Object {$_.ProviderName -eq "Application Error"} |
Format-List TimeCreated,Message
 

Explorer Process

 
Get-Process explorer
 

Restart Explorer

 
Stop-Process explorer -Force
Start-Process explorer
 

Physical Disk Health

 
Get-PhysicalDisk
 

Scan Volume

 
Repair-Volume -DriveLetter C -Scan
 

Best Practices

✔ Keep Windows updated

✔ Update graphics drivers

✔ Avoid unnecessary Explorer extensions

✔ Disable unused preview handlers

✔ Keep Visual C++ runtime updated

✔ Run SFC periodically

✔ Check SSD SMART health

✔ Use Robocopy for very large data transfers

✔ Keep antivirus exclusions for trusted large copy operations

✔ Remove unused shell integration software


Troubleshooting Checklist

Check Status
Event Viewer Reviewed
Reliability Monitor Checked
SFC Completed
DISM Completed
CHKDSK Completed
Preview Pane Disabled
Thumbnail Cache Cleared
Shell Extensions Disabled
Visual C++ Repaired
Graphics Driver Updated
Robocopy Tested

Frequently Asked Questions (FAQs)

Q1. Why does my taskbar disappear and come back automatically?

Because Explorer.exe has crashed and Windows automatically restarts the Windows shell.

Q2. Is ucrtbase.dll the real problem?

Usually no. It is the Microsoft Universal C Runtime where the crash is detected. The underlying cause is often a third-party application or shell extension.

Q3. What does Exception Code 0xC0000409 mean?

It indicates a stack buffer overrun, meaning Windows detected memory corruption and terminated the process to protect system stability.

Q4. Can PDF software crash File Explorer?

Yes. Applications like Nitro PDF or Adobe Acrobat install preview handlers, thumbnail providers, and context menu extensions that can crash Explorer if they malfunction.

Q5. How can I safely copy files if Explorer keeps crashing?

Use Robocopy, which is more reliable than Explorer for large file transfers and continues copying even if Explorer restarts.

Q6. Will SFC and DISM fix this issue?

They repair corrupted Windows system files. If the crash is caused by damaged system components, they often resolve the issue. If the cause is third-party software, additional troubleshooting is required.

Q7. Should I uninstall Nitro PDF immediately?

Not necessarily. First disable its Explorer integration or temporarily uninstall it to verify whether it is responsible for the crashes.

Q8. Can antivirus software cause Explorer crashes?

Yes. Antivirus products that integrate with File Explorer or scan files during copy operations can sometimes trigger Explorer instability.

Q9. Is hardware failure a possible cause?

Yes. Faulty RAM, SSD/HDD errors, or graphics driver issues can also lead to Explorer crashes, so memory and disk diagnostics should be performed.

Q10. What is the fastest way to identify the cause?

Check Event Viewer, Reliability Monitor, and disable all non-Microsoft shell extensions using ShellExView. This combination usually identifies the root cause quickly.


Conclusion

File Explorer crashes in Windows 11 are often caused by third-party shell extensions rather than Windows itself. In the investigated case, the combination of an Explorer.exe crash in ucrtbase.dll (Exception Code 0xC0000409) and a preceding Nitro PDF (libcef.dll) failure strongly suggests that Explorer was destabilized by external shell integration. By analyzing Event Viewer, checking Reliability Monitor, repairing Windows files with DISM and SFC, disabling preview handlers, testing with Robocopy, and temporarily removing problematic Explorer extensions, most restart issues can be resolved without reinstalling Windows. A structured, evidence-based approach is the quickest way to restore Explorer stability.

 

#Windows11 #FileExplorer #ExplorerEXE #WindowsExplorer #ExplorerCrash #WindowsFix #TechSupport #Troubleshooting #MicrosoftWindows #WindowsTips #SystemRepair #DISM #SFC #CHKDSK #PowerShell #Robocopy #EventViewer #ReliabilityMonitor #VisualCPlusPlus #UCRTBase #ExplorerRestart #Taskbar #Desktop #FileCopy #SystemAdmin #ITSupport #ComputerRepair #WindowsErrors #TechGuide #PCRepair #WindowsHelp #ExplorerError #NitroPDF #ShellExtension #Performance #WindowsOptimization #Storage #SSD #HDD #MemoryTest #Drivers #GraphicsDriver #PreviewPane #ThumbnailCache #ContextMenu #DesktopSupport #EnterpriseIT #HelpDesk #BisonInfosolutions #WindowsTroubleshooting

YOUR FEEDBACK

Was this guide useful?

Your answer helps us keep BISONKB accurate and practical.

BISON AI

Ask about “Windows 11 File Explorer Keeps Restarting While Copying Files – Complete Troubleshooting Guide (Explorer.exe Crash, ucrtbase.dll & 0xC0000409 Fix)”

This interface is ready to connect to your preferred AI provider. No article or user data is sent until that service is configured.

THE BISON BRIEF

Practical IT knowledge, once a week.

New troubleshooting guides, scripts and infrastructure notes. No noise.

By subscribing, you agree to our privacy policy.