Windows 11 Running Slow After Update: Real Fixes

Windows 11 · 5 min read · Target: windows 11 slow after update · Updated September 2026

Experiencing windows 11 slow after update lag is a frequent issue after monthly cumulative patches. When Windows 11 is slow after update, the root cause is almost always post-install background servicing (TiWorker.exe, DISM component store compaction, or corrupted Fast Startup cache) starving your SSD of I/O operations.

Diagnosis check: Press Ctrl + Shift + Esc for Task Manager. If "System" or "Windows Modules Installer Worker" sits at 90%+ disk utilization, use the sequence below.

Step-by-step performance restoration

  1. Step 1 — Run DISM and SFC component repair

    Post-update file system mismatches force Windows into constant retry verification. Open PowerShell as Administrator and run:

    PowerShell (Admin)
    dism /online /cleanup-image /restorehealth && sfc /scannow
  2. Step 2 — Disable and re-enable Fast Startup

    Fast Startup hibernates your Windows kernel rather than doing a true power cycle, carrying post-update driver memory leaks across restarts. Go to Control Panel → Power Options → Choose what the power buttons do. Click "Change settings that are currently unavailable", uncheck Turn on fast startup, and reboot.

  3. Step 3 — Run .NET Framework NGEN re-compilation

    Updates often trigger background JIT compilation. Force it to finish synchronously with:

    PowerShell (Admin)
    C:\Windows\Microsoft.NET\Framework64\v4.0.30319\ngen.exe executeQueuedItems
← Back to all fixes