Why Windows 11 File Explorer Flashes White in Dark Mode (Fix)

Windows 11 · 4 min read · Target: file explorer white flash dark mode · Updated September 2026

Seeing a sudden file explorer white flash dark mode glitch every time you open a folder or new tab is painful for your eyes. The cause of this Windows 11 file explorer white flash dark mode bug is a legacy GDI window drawing frame initializing before the modern WinUI XAML dark theme layer finishes rendering.

Diagnosis: This is a rendering race condition between the shell canvas and background tabs. The workarounds below disable the redraw delay.

Step-by-step fix

  1. Step 1 — Enable separate process for folder windows

    Open File Explorer, click the three dots (...) menu → OptionsView tab. Scroll down and check "Launch folder windows in a separate process". Click Apply. This isolates window redraws from Explorer shell lag.

  2. Step 2 — Clear Explorer shell icon and thumbnail cache

    Run these commands in PowerShell to delete the stale pre-render cache that forces white background repaints:

    PowerShell
    taskkill /f /im explorer.exe && del /f /q "%localappdata%\IconCache.db" && start explorer.exe
  3. Step 3 — Turn off transparency effects

    Go to Settings → Personalization → Colors and toggle Transparency effects to Off. This bypasses DWM compositing latency that exposes the raw white Win32 frame during tab transitions.

← Back to all fixes