Windows · Performance
How to Fix Windows 11 Slow Performance After an Update
The fixes that actually worked — no reinstalls, no factory resets.
My laptop turned into a slideshow last winter after a Windows 11 update. Opening Chrome took eight full seconds. The disk light stayed solid for twenty minutes after boot. I assumed something was badly broken — until I discovered it's a pattern that hits a huge number of machines after major Windows updates.
After too many forum threads and a lot of trial and error, I put together the fixes that consistently work. Some take thirty seconds. A couple take a few minutes. None of them require reinstalling Windows.
Why Updates Slow Windows 11 Down
Updates don't just install and vanish. After the reboot, several processes kick off simultaneously and compete for CPU and disk resources. Knowing which ones are running helps you decide which fix to reach for first.
| Background Process | What It's Doing | Impact |
|---|---|---|
| SysMain (Superfetch) | Re-learning your app usage patterns | High |
| Windows Search Indexer | Re-scanning all files for search | Medium |
| Delivery Optimisation | Sharing update files with nearby PCs | High |
| Driver conflicts | Generic driver replaced your working one | High |
| Telemetry (DiagTrack) | Sending diagnostics to Microsoft | Low |
Fix 1: Check Task Manager Before Touching Anything
This takes 30 seconds and saves you from fixing the wrong thing. Press Ctrl + Shift + Esc to open Task Manager, then click the CPU or Disk column header to sort by usage.
If Antimalware Service Executable, SysMain, or Windows Update are sitting at 60–90% — that's expected post-update activity and will calm down on its own. If something unfamiliar is at the top, that's worth investigating separately.
Fix 2: Disable SysMain (Especially on SSDs)
SysMain was genuinely useful back when hard drives were slow. On an SSD, it pre-loads data the drive can already retrieve almost instantly — so it just burns RAM and disk cycles for no real gain. Disabling it is safe on any SSD and often makes a noticeable difference within minutes.
1. Press Win + R → type: services.msc → Enter
2. Scroll down to "SysMain"
3. Right-click → Properties
4. Set Startup type: Disabled
5. Click Stop → Apply → OK
6. Restart your PC
Fix 3: Roll Back or Update Conflicted Drivers
This is probably the most underrated fix on the list. Windows Update occasionally swaps a manufacturer-specific driver with a generic Microsoft one — particularly for graphics cards, chipsets, and network adapters. The generic version often performs noticeably worse and can cause sustained high CPU usage that never settles down.
How to check
- Right-click the Start button → Device Manager
- Look for anything flagged with a yellow warning triangle
- Right-click the flagged device → Properties → Driver tab
- Click Roll Back Driver if the option is available
Fix 4: Clean Up Startup Programs
Updates have a habit of quietly re-enabling startup programs. Microsoft Teams, Skype, OneDrive, and various OEM utilities are repeat offenders — they sneak back into the startup list and you only notice when boot times double.
# Via Task Manager
Ctrl + Shift + Esc → Startup Apps tab
→ Sort by "Startup impact" (High first)
→ Right-click non-essential apps → Disable
# More complete list
Settings → Apps → Startup
→ Toggle off anything not needed at boot
| App | Safe to Disable? | Note |
|---|---|---|
| Microsoft Teams | ✅ Yes | Opens fine when you actually need it |
| Spotify / Discord | ✅ Yes | Both autostart by default unnecessarily |
| OneDrive | ⚠️ Depends | Keep if syncing files; disable if idle |
| Windows Security | ❌ No | Leave this one alone |
Fix 5: Run SFC and DISM to Repair System Files
Updates occasionally corrupt or incorrectly replace system files — it's rarer than it used to be, but it still happens. The built-in SFC and DISM tools scan and repair these automatically. Run DISM first (it fixes the repair source), then SFC.
# Open Terminal as Administrator
# (Right-click Start → Terminal (Admin))
# Step 1 — Repair the update source first
DISM /Online /Cleanup-Image /RestoreHealth
# Step 2 — Scan and fix system files
sfc /scannow
# Restart after both complete
Fix 6: Check Your Power Plan
This one catches people off guard. Updates sometimes silently reset the power plan to Power Saver, which throttles the CPU to reduce heat and battery use. If you were running on Balanced or High Performance before the update, this is worth checking immediately.
# Quick method
Settings → System → Power → Power mode
→ Set to "Balanced" or "Best performance"
# If the option is missing (common on laptops)
Control Panel → Hardware and Sound → Power Options
→ Show additional plans → High performance
Last Resort: Uninstall the Update
If you've worked through everything above and the machine is still clearly slower than before, rolling back the update is a legitimate option. Windows holds the uninstall option open for about 10 days after major feature updates.
# For cumulative / security updates
Settings → Windows Update → Update History
→ Uninstall Updates → Find recent entry → Uninstall
# For feature updates (annual version bumps)
Settings → System → Recovery
→ "Go back" — only available within ~10 days
Frequently Asked Questions
▸ My PC is slow right after the update — fix it now or wait?
Give it an hour, especially if the disk activity light is solid. Background indexing and telemetry usually settle on their own. Start working through fixes only if it's still struggling after 1–2 hours.
▸ Is disabling SysMain permanently safe?
On an SSD, completely fine. SysMain was designed for spinning hard drives and becomes more hindrance than help on modern storage. On a traditional HDD, leave it enabled.
▸ Will rolling back the update leave my PC less secure?
Temporarily, potentially yes. Feature updates include security patches. Treat a rollback as a short-term fix, then update again once Microsoft releases a patch for the performance issue.
▸ I tried everything — still slow. What now?
Check two things: available disk space (Windows 11 struggles below 15GB free) and idle RAM usage. If you're at 85%+ RAM with nothing open, there's likely a memory leak from an app or service that the update changed or re-enabled.
▸ Does this happen with every Windows update?
Monthly security patches rarely cause problems. Annual feature updates (23H2, 24H2) are where these issues tend to appear. Waiting a week or two after a major release gives Microsoft time to patch the worst issues first.
Conclusion
Post-update slowdowns are frustrating because they feel completely random — one update installs cleanly, the next one tanks performance for no obvious reason. The good news is the cause is almost always one of a short list of things, and none of them require anything drastic.
Start with Task Manager to see what's actually running hot. Disable SysMain if you're on an SSD. Check your drivers. Clear out startup programs that crept back in. In most cases, one of those four steps solves it — and the whole process takes under twenty minutes.
The short version
Task Manager → SysMain → Drivers → Startup programs → SFC → Power plan.
That order resolves about 90% of post-update slowdowns without touching a reinstall.