Windows 10 File Explorer crashing regularly

crashwindows 10windows-explorer

I upgraded to Windows 10 a week ago, and then installed a fresh copy of it on a SSD. Everything worked fine, until File Explorer suddently started to behave weird: When I double-click on a folder, it opens in a new window (despite having "Browse Folders" set to "Open in same window"), and when I copy a file, it freezes for ~10 seconds, after which it crashes and restarts (however, the file is copied just fine). The crash also happens randomly when I browse Control Panel.

Things I tried already:

  • Reset Windows. The problem was fixed temporarily, but came back after a couple of days.
  • Uninstalled last update.
  • Booted in Safe Mode.
  • Removed all shell extensions using shexview.

Nothing worked.
The crash event log:

Log Name:      Application
Source:        Application Error
Date:          8/30/2015 6:30:18 PM
Event ID:      1000
Task Category: (100)
Level:         Error
Keywords:      Classic
User:          N/A
Computer:      D180-M1
Description:
Faulting application name: Explorer.EXE, version: 10.0.10240.16431, time stamp: 0x55c9bd76
Faulting module name: windows.storage.dll, version: 10.0.10240.16405, time stamp: 0x55b46055
Exception code: 0xc000041d
Fault offset: 0x0000000000120dec
Faulting process id: 0xc48
Faulting application start time: 0x01d0e3408ef60455
Faulting application path: C:\WINDOWS\Explorer.EXE
Faulting module path: C:\WINDOWS\system32\windows.storage.dll
Report Id: 3f9927d9-ad92-45c6-a325-dace805f2099
Faulting package full name:
Faulting package-relative application ID:

Best Answer

I had a similar issue. It seems that what caused it for me was trying to customize explorer using command line. I ended up with the copy/move crash, and open-in-new-window issue.

This is the command that broke things for me:

%SystemRoot%\explorer.exe /e,/root,::{450d8fba-ad25-11d0-98a8-0800361b1103}

I chanced upon this case, and it seems that resetting folder options in the registry might keep you from having to do a system restore, or recreating the user. Here's the related KB.

I ended up only having to delete and recreate BagMRU, and Bags (I compared my registry before and after corruption for differences, I also compared to the MS case).

[HKEY_CURRENT_USER\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\Shell\BagMRU]

[HKEY_CURRENT_USER\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags]

There were more differences, but this was the first I tried and it solved at least the open-in-new-window issue. I wasn't experiencing the crashing anymore because I had done a system restore.

Related Question