Based on the symptoms, the most useful next step is to confirm whether explorer.exe is hanging or crashing, then capture data from it.
- Open Task Manager with Ctrl+Alt+Del > Task Manager.
- Go to the Details tab.
- Check whether explorer.exe and userinit.exe are running.
If explorer.exe is running when the screen starts going black:
- Download ProcDump and extract it to a folder such as **C:\Tools**.
- Open an elevated Command Prompt.
- Go to that folder.
- Run:
procdump -ma explorer.exe explorer.dmp
procdump -ma userinit.exe userinit.dmp
This creates dump files that can be analyzed to find what is breaking Explorer.
If explorer.exe is not running, or it exits during the problem:
- Download Process Monitor (ProcMon) and extract it to a folder such as **C:\Sysinternals**.
- Run ProcMon as administrator.
- If only one user session is allowed on the device, use Options > Enable Boot Logging.
- Restart the PC.
- After startup, open ProcMon again, save the log, and choose All events.
- Check the log for explorer.exe or userinit.exe exiting with a nonzero exit code.
If a second signed-in user can be used to reproduce the issue, ProcMon can also be left running in one session while the other session reproduces the black screen, then the capture can be saved.
If the issue looks like Explorer is stopping responding rather than exiting:
- Press Windows key + R, type eventvwr.msc, and press Enter.
- Open Windows Logs > Application.
- Look for Event ID 1000 around the time the black screen happens.
- If the event points to explorer.exe or userinit.exe, enable Windows Error Reporting dumps.
Warning: editing the registry can cause serious problems if done incorrectly. Back up the registry first.
Create these values under:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Windows Error Reporting
If the key does not exist, create it.
Use these values:
-
DumpCount=10(REG_DWORD) -
DumpType=2(REG_DWORD) -
DumpFolder=C:\dumps(REG_EXPAND_SZ)
Then restart or sign in again and reproduce the issue. If Explorer hangs, a dump should be written to C:\dumps.
There are also two simpler Windows-side checks that are supported by Microsoft for Explorer problems:
- In Control Panel > System and Security > System > Advanced system settings > Advanced > Performance > Settings > Advanced, make sure Adjust for best performance of is set to Programs.
- Under Virtual memory > Change, make sure Automatically manage paging file sizes for all drives is selected, then restart.
If the machine is on an update released before late July 2026 and the black screen is tied to Explorer, Start, or other XAML-based shell components not starting, install the latest Windows update available for the device. Microsoft states this issue is addressed starting with updates released June 23, 2026.
References: