Why Windows 11 Boots to a Black Screen with Cursor and How to Recover
🔍 WiseChecker

Why Windows 11 Boots to a Black Screen with Cursor and How to Recover

Quick fix: At the black screen with cursor, press Ctrl + Shift + Esc to open Task Manager (it usually still responds). Click Run new task → explorer.exe → OK. The desktop loads. Windows Explorer crashed during boot — restarting it produces the missing UI.

You sign in to Windows 11. After the lock screen, the desktop wallpaper appears but the taskbar, Start menu, and icons don’t. Just a black screen with your mouse cursor that you can move. Windows is booted; Explorer (the process that draws the desktop UI) failed to start or crashed early.

Symptom: After sign-in, screen is black or shows wallpaper only; no taskbar, no Start menu, only the mouse cursor responds.
Affects: Windows 11 (and Windows 10) when Explorer fails to start during boot.
Fix time: ~10 minutes.

ADVERTISEMENT

What causes this

Explorer.exe is the process that draws the Windows shell: taskbar, Start menu, desktop icons, system tray. If Explorer crashes during boot or fails to start, the shell doesn’t draw — but the rest of Windows (kernel, drivers, services, your session) is running. The cursor responds because the mouse driver is fine. The fix is to start Explorer manually or fix what’s preventing it from starting.

Common causes: a corrupted Explorer registry entry, a startup app that crashed Explorer, a third-party shell extension that fails to load.

Method 1: Start Explorer manually via Task Manager

The immediate workaround.

  1. At the black screen, press Ctrl + Shift + Esc. Task Manager opens.
  2. If Task Manager opens in compact mode, click More details at the bottom.
  3. Click File menu → Run new task.
  4. Type explorer.exe. Tick Create this task with administrative privileges if available.
  5. Click OK.
  6. The taskbar, Start menu, and desktop icons should appear within seconds.
  7. If Explorer crashes again immediately, proceed to Method 2 to find the cause.

This is the emergency-recovery sequence. Memorize it — works in 95% of black-screen-with-cursor cases.

ADVERTISEMENT

Method 2: Identify and disable the startup item causing Explorer to crash

Use when Method 1 starts Explorer but it crashes again on next sign-in.

  1. Get Explorer running via Method 1.
  2. Open Task Manager → Startup apps tab.
  3. Note all enabled items. Disable each non-essential one (Discord, Steam, Spotify, OneDrive auto-start, OEM utilities).
  4. Sign out and back in. If the black screen is gone, you’ve identified the cause is in the startup apps.
  5. Re-enable items one at a time, signing out each cycle, until the black screen returns — the last one re-enabled is the culprit. Leave it disabled.
  6. Common offenders: outdated graphics drivers’ helper apps, third-party widgets, RGB lighting utilities.

Process-of-elimination identifies what crashes Explorer at sign-in.

Method 3: Reset Explorer settings and shell extensions

Use when the black screen persists even with all startup apps disabled.

  1. Get Explorer running via Method 1.
  2. Open Terminal (Admin).
  3. Reset Explorer’s state:
    Stop-Process -Name explorer -Force
    Remove-Item -Force -ErrorAction SilentlyContinue "$env:LocalAppData\Microsoft\Windows\Explorer\thumbcache_*.db"
    Remove-Item -Force -ErrorAction SilentlyContinue "$env:LocalAppData\Microsoft\Windows\Explorer\iconcache_*.db"
    Start-Process explorer
  4. Use Sysinternals Autoruns (from learn.microsoft.com/sysinternals) to check Explorer shell extensions. Run as administrator.
  5. Switch to the Explorer tab. Look for entries that aren’t Microsoft-signed (the “Publisher” column).
  6. Untick suspicious or unfamiliar third-party shell extensions. They reload on next Explorer start.
  7. Reboot. If the issue is resolved, one of the untracked extensions was at fault.

This catches cases where a third-party shell extension (often from older software you forgot you installed) is breaking Explorer’s initialization.

How to verify the fix worked

  • Reboot. Sign in. Taskbar, Start menu, and desktop icons appear within 10 seconds.
  • Open Task Manager. Windows Explorer appears in the Processes list with stable memory usage.
  • Click Start menu — responsive.
  • Open Event Viewer → Windows Logs → Application. No recent “Faulting application name: explorer.exe” errors.

If none of these work

If the black screen persists despite manual Explorer start, startup-app disable, and shell-extension cleanup, three deeper causes apply. Corrupted user profile: create a new local user account (via Settings → Accounts → Other users). Sign in to the new account. If Explorer works there, your original profile is corrupted — copy files out, recreate. Graphics driver issue: a misbehaving GPU driver can prevent Explorer’s rendering. Boot to Safe Mode (F4 from Recovery Environment startup settings). If Safe Mode shows desktop normally, the issue is a driver — update GPU driver to latest from the vendor. System file corruption: run sfc /scannow and DISM /Online /Cleanup-Image /RestoreHealth. Reboot. Persistent issues despite all these usually warrant an in-place upgrade install (mount Windows 11 ISO, run setup.exe with Keep files and apps).

Bottom line: Black screen with cursor is Explorer.exe missing — start it via Task Manager’s Run new task, then diagnose startup apps and shell extensions to prevent recurrence.

ADVERTISEMENT