How to Fix Windows 11 Black Screen After Login — Cursor Visible But No Desktop, No Taskbar

By Adhen Prasetiyo

Monday, April 27, 2026 • 7 min read

Windows 11 black screen after login showing only the mouse cursor with no desktop icons or taskbar visible

How to Fix Windows 11 Black Screen After Login — Cursor Visible But No Desktop, No Taskbar

You type your password. The login screen accepts it. The welcome message appears briefly. And then nothing. A solid black screen with your mouse cursor floating in the void. No desktop icons. No taskbar. No Start button. No wallpaper. Just blackness and a cursor that moves when you push the mouse but does nothing when you click.

Your computer is running. You can hear the fan. If you had music playing before the restart, you might even hear it resume in the background. The system booted, you logged in successfully, and Windows is running underneath. But the visual layer — the desktop, the taskbar, the icons, everything you actually interact with — is missing.

This is not a dead computer. This is not a hardware failure. This is Explorer.exe failing to start.

What Explorer.exe Actually Does

Most people think of File Explorer as the file browsing application — the window you open to navigate your folders. But Explorer.exe is far more than that. It is the Windows shell — the entire graphical layer that makes Windows look and feel like Windows.

Explorer.exe is responsible for:

  • The desktop — the background wallpaper and all desktop icons
  • The taskbar — the bar at the bottom with the Start button, pinned apps, system tray, and clock
  • The Start menu — the menu that opens when you click Start or press the Windows key
  • File Explorer windows — the folder browsing interface
  • Desktop Window Manager integration — the compositing engine that renders transparent effects, shadows, and window animations

When Explorer.exe crashes or fails to start during login, ALL of these components are missing. The only thing that remains is the cursor, which is managed by a lower-level system process (csrss.exe) that started before Explorer.

The Immediate Fix: Launch Explorer Manually

You can bring back your desktop in 30 seconds:

  1. Press Ctrl+Shift+Esc — this opens Task Manager even when the desktop is not loaded
  2. If Task Manager opens minimized or in compact mode, click “More details” at the bottom
  3. Click File → Run new task
  4. Type explorer.exe
  5. Click OK

Within 2 to 3 seconds, your desktop wallpaper appears, the taskbar slides up from the bottom, and your desktop icons populate. Everything is back to normal.

If Ctrl+Shift+Esc does not open Task Manager, try Ctrl+Alt+Delete first — this opens the security options screen where you can click “Task Manager.” If neither works, press Windows+R to attempt opening the Run dialog directly, then type taskmgr and press Enter.

This manual launch is a temporary fix — it gets you back to work immediately. But if you do not fix the underlying cause, the black screen will return on the next login.

Why Explorer.exe Crashes at Startup

Explorer.exe is one of the first user-mode processes that loads after login. During initialization, it:

  1. Reads the shell configuration from the registry
  2. Loads the desktop composition engine (requires the GPU driver)
  3. Initializes the taskbar and system tray
  4. Loads shell extensions from installed applications
  5. Processes the Startup folder and Run registry keys
  6. Renders the desktop icons and wallpaper

A failure at any of these steps can crash Explorer before the desktop appears. The most common causes:

GPU driver crash. The desktop composition engine depends on the GPU driver to render the visual shell. If the GPU driver is corrupted, outdated, or incompatible, Explorer crashes during step 2 — before anything visual appears. This is the most common cause of the black screen with cursor, especially after Windows updates that replace GPU drivers.

Corrupt shell extension. A broken DLL from a third-party application that registers a shell extension (context menu handler, icon overlay, property sheet handler) can crash Explorer during step 4. The extension loads inside the Explorer process, and a crash in the extension takes down all of Explorer.

Fast Startup restoring corrupt state. Fast Startup saves the kernel session to disk during shutdown and restores it during boot. If the saved session includes a corrupted Explorer state, the corruption is faithfully restored on every boot, causing the black screen repeatedly.

Malware modifying the shell registry entry. The registry value at HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\WinlogonShell tells Windows which executable to use as the desktop shell. Normally this is explorer.exe. If malware changes this value to something else — or to nothing — the desktop shell never loads.

Fixing the GPU Driver

Since GPU driver problems are the most common cause, address this first:

From the black screen, open Task Manager (Ctrl+Shift+Esc) and use File → Run new task:

  1. Type devmgmt.msc → OK (opens Device Manager)
  2. Expand Display adapters
  3. Right-click your GPU → Update driver → Search automatically
  4. If the problem started after a recent driver update: right-click → Properties → Driver tab → Roll Back Driver

For a completely clean GPU driver installation:

  1. Uninstall the GPU driver from Device Manager (check “Delete the driver software”)
  2. Restart — Windows will use a basic display driver (low resolution but functional)
  3. Download the latest driver from NVIDIA, AMD, or Intel
  4. Install and restart

If you cannot access Device Manager from the black screen, boot into Safe Mode — Safe Mode uses a basic display driver that bypasses GPU driver issues entirely.

Disabling Fast Startup

Fast Startup is the most frequent cause of the black screen returning after you have fixed it once. You fix the problem, restart successfully, and the next time you shut down and boot up, the black screen is back — because Fast Startup saved and restored the pre-fix corrupted state.

From the recovered desktop (after launching Explorer manually):

  1. Open Control Panel (search for it or run control.exe)
  2. Go to Power Options → Choose what the power buttons do
  3. Click “Change settings that are currently unavailable”
  4. Uncheck “Turn on fast startup”
  5. Click Save changes

With Fast Startup disabled, every shutdown is a true full shutdown, and every boot is a true clean boot. No corrupted state is preserved across power cycles.

Checking the Shell Registry Value

If you suspect malware or if Explorer never starts even when launched manually from Task Manager, check the shell configuration:

  1. Open Registry Editor (run regedit from Task Manager → File → Run new task)

  2. Navigate to:

    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon
    
  3. Find the value named Shell

  4. Its data should be exactly: explorer.exe

If it says anything else — a different executable path, or if the value is empty — that is the problem. Double-click the Shell value and change it back to explorer.exe. Restart and the desktop should load normally.

Also check HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon for a user-specific Shell override. If a Shell value exists here, delete it to let the system-wide value take effect.

The Safe Mode Diagnostic

If none of the above fixes work from the black screen, Safe Mode is your diagnostic environment:

  1. From the login screen (before the black screen occurs), hold Shift and click the power icon → Restart
  2. Select Troubleshoot → Advanced options → Startup Settings → Restart
  3. Press 4 or F4 for Safe Mode (or 5/F5 for Safe Mode with Networking)

Safe Mode loads Windows with minimal drivers and no third-party startup programs. If the desktop loads normally in Safe Mode, the problem is a driver or a startup application — not a Windows system file corruption.

From Safe Mode, you can:

  • Update or reinstall GPU drivers
  • Disable startup programs in Task Manager → Startup tab
  • Run sfc /scannow and DISM /Online /Cleanup-Image /RestoreHealth
  • Check the Shell registry value
  • Uninstall recently installed applications that might have caused the conflict

The black screen after login is terrifying because it looks like your computer is broken. In reality, the computer is running perfectly — it is just the visual shell that failed to load. Pressing Ctrl+Shift+Esc and launching Explorer manually gets you back to work in seconds. Then fixing the root cause — usually a GPU driver issue or Fast Startup restoring bad state — prevents it from happening again.

Step-by-Step Guide

1

Launch Explorer.exe from Task Manager

Press Ctrl plus Shift plus Esc to open Task Manager. If Task Manager does not appear try pressing Ctrl plus Alt plus Delete and select Task Manager from the options screen. In Task Manager click File then Run new task. Type explorer.exe and click OK. The desktop, taskbar and Start menu should appear within seconds. If this works Explorer.exe crashed during startup and did not restart automatically. This is a temporary fix for the current session. Continue to the next steps to make the fix permanent.

2

Check for Explorer.exe in the startup process

Once the desktop is visible open Task Manager and click the Startup tab. Look for Windows Explorer or any suspicious entries that might be interfering with Explorer startup. Also press Windows plus R and type shell:startup to open the Startup folder. Remove any shortcuts that might be causing conflicts during login. Malware, broken shortcuts, and incompatible startup programs can crash Explorer.exe before it finishes loading the desktop shell.

3

Update or roll back the graphics driver

A corrupted or incompatible graphics driver is the most common cause of the black screen after login. The GPU driver initializes the desktop composition engine and when it fails the desktop cannot render. Open Device Manager from Task Manager by clicking File then Run new task and typing devmgmt.msc. Expand Display adapters. Right-click your GPU and select Update driver. If the black screen started after a driver update right-click and select Properties then Driver tab then Roll Back Driver. For a clean fix uninstall the driver completely restart and install the latest version from the GPU manufacturer website.

4

Disable fast startup

Open Control Panel by running control.exe from Task Manager. Go to Power Options then Choose what the power buttons do. Click Change settings that are currently unavailable. Uncheck Turn on fast startup. Click Save changes. Fast startup saves a partial system state to disk during shutdown and restores it during boot. When this saved state contains a corrupted Explorer configuration or a broken driver state the black screen occurs every boot. Disabling fast startup forces a full clean boot every time which avoids restoring corrupted state.

5

Run System File Checker and DISM in Safe Mode

If the black screen persists after every login boot into Safe Mode. Hold Shift while clicking Restart from the login screen power menu. Go to Troubleshoot then Advanced options then Startup Settings then Restart then press 4 for Safe Mode. In Safe Mode open Command Prompt as Administrator and run sfc /scannow. If it finds corruption run DISM /Online /Cleanup-Image /RestoreHealth then sfc again. Safe Mode loads Windows with minimal drivers and no third-party startup programs so if the black screen does not occur in Safe Mode the problem is a driver or startup application conflict.

Frequently Asked Questions

Why can I see the cursor but nothing else on the black screen?
The cursor is rendered by a separate system process called csrss.exe that starts before Explorer.exe. When Explorer.exe fails to start or crashes during initialization the desktop shell never loads but the cursor subsystem is already running. This is why you can move the cursor but cannot click on anything because there is nothing rendered underneath it. The entire desktop including icons, taskbar and Start menu are all components of the Explorer.exe shell process.
The black screen happens every time I restart but not after a fresh shutdown. Why?
This is almost certainly caused by Fast Startup. When you click Shut Down with Fast Startup enabled Windows does not fully shut down. It saves the kernel session and driver states to a hibernation file and restores them on the next boot. If the saved state includes a corrupted Explorer or driver configuration the corruption is restored every boot. Restart bypasses Fast Startup and performs a full clean boot which is why restart works but shutdown does not. Disable Fast Startup as described in Step 4.
I cannot open Task Manager at all on the black screen. What do I do?
Try pressing Ctrl plus Alt plus Delete first which should show the security screen with Task Manager as an option. If that does not work try pressing Windows plus R which may open the Run dialog even on a black screen. Type taskmgr and press Enter. If neither keyboard shortcut works hold the power button for 10 seconds to force shutdown then boot into Safe Mode by interrupting the boot process three times. Turn on the PC and hold the power button when you see the Windows logo. Repeat this three times and Windows will enter the recovery environment where you can access Safe Mode.
Could malware cause the black screen after login?
Yes certain types of malware replace or corrupt the Explorer.exe shell registry entry to prevent the desktop from loading. The registry key that controls which shell loads at startup is HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon under the value Shell. It should be set to explorer.exe. If malware changed this to a different executable or a blank value the desktop will not load. Check this registry value from Safe Mode or from the recovery command prompt and reset it to explorer.exe if it has been modified.
Adhen Prasetiyo

Research Bug bounty at javahack team

Research Bug bounty Profesional

Web Development Research Bug Hunter
View all articles →