Windows · Performance · Updated August 2026
You installed Windows 11 24H2, and the machine that felt fine last week now takes a minute to reach the desktop, File Explorer hesitates before every folder, and the disk light never seems to go out. Nothing is obviously broken. It is just slow.
Most of the time this is not damage. A feature update rebuilds the component store, re-indexes your files, resets some drivers and leaves a full copy of the previous Windows on the drive. All of that work happens quietly in the background, and on a machine that is short of disk space or running an older driver it can take days rather than hours. The twelve checks below are in the order that actually resolves it, starting with the ones that cost nothing.
⚡ The Short Answer
Leave the PC on and plugged in for a few hours after the update, then open Task Manager and look at Disk rather than CPU. If Windows Modules Installer Worker or Microsoft Windows Search Indexer is busy, it is still finishing and it will settle. If it is still slow the next day, free up disk space by removing the previous Windows installation, then update your graphics and storage drivers from the manufacturer.
⚠ Do not start by disabling Windows Search or SysMain. Those two suggestions are everywhere, and switching them off permanently breaks Start menu search and gains almost nothing on an SSD. Both appear below as short tests you reverse afterwards, not as fixes.
Which Kind Of Slow Is It?
Four patterns cover almost every case, and each one points at a different set of fixes. Find yours before you start, and you will save yourself most of this article.
SITUATION A Slow since the update, disk light constantly on
Background servicing and re-indexing are still running. Start with Fix 1, Fix 2 and Fix 3.
SITUATION B Disk sits at 100% and the drive is nearly full
The update left a full copy of the old Windows behind and there is no headroom left. Go straight to Fix 3, then Fix 5.
SITUATION C Games stutter, video tears, animations drop frames
A graphics driver was replaced with a generic one during the update. Fix 4 and Fix 9 are yours.
SITUATION D Slow at everything, days later, fans always running
Something is genuinely wrong rather than settling. Work through Fix 7, Fix 11 and, if needed, Fix 12.
Table of Contents
- Which kind of slow is it?
- Let post-update servicing finish
- Find the real load — look at Disk, not CPU
- Reclaim disk space and remove the old Windows
- Reinstall graphics, chipset and storage drivers
- Check SSD health and firmware the correct way
- Trim what starts with Windows
- Repair system files in the right order
- Turn down animations and transparency
- Set the power mode and rule out throttling
- Rebuild the search index
- Clean boot to catch a third-party culprit
- Roll back 24H2, or reinstall as a last resort
- Quick reference — all 12 fixes
- Mistakes to avoid
- The order to follow
- Frequently asked questions
The 12 Fixes, In Order
1Let Post-Update Servicing Finish
DO THIS FIRST A few hours NO DATA LOSS
A feature update is not finished when the desktop appears. Windows still has to clean up the component store, re-register apps, and index every file you own. On a laptop that gets closed and slept every twenty minutes, that work never gets a clear run and the slowness drags on for a week.
- Plug the machine in and leave it awake, signed in and idle for two to three hours.
- Restart normally, then restart a second time. Some servicing tasks only run at boot.
- Install anything waiting in Settings → Windows Update, including Advanced options → Optional updates.
- Restart once more and then judge the speed.
✅ Verify it worked: the disk activity graph in Task Manager drops to near zero when you are not doing anything.
2Find The Real Load — Look At Disk, Not CPU
MOST COMMON CAUSE 10 min NO DATA LOSS
After 24H2 the bottleneck is almost always the drive rather than the processor. Sorting by CPU tells you very little; sorting by Disk usually names the culprit in seconds.
- Press Ctrl + Shift + Esc to open Task Manager.
- Open Processes and click the Disk column header to sort by it. Then do the same for Memory.
- Open the Performance tab and watch Disk for a full minute while you touch nothing.
What the usual names mean
| Process | What it is doing | What to do |
|---|---|---|
| Windows Modules Installer Worker | Finishing the update | Leave it — Fix 1 |
| Microsoft Windows Search Indexer | Rebuilding the file index | Leave it, or Fix 10 if it never stops |
| Antimalware Service Executable | Post-update full scan | Let one full scan complete |
| Service Host: Delivery Optimization | Uploading update files | Limit it in Windows Update advanced options |
| A sync or backup client | Re-uploading after the update | Pause it and see |
✅ Verify it worked: you can name the process using the drive. If it is one of the first three, the answer is patience, not tweaking.
3Reclaim Disk Space And Remove The Old Windows
HIGH IMPACT 20 min
The update keeps your previous installation in a folder called Windows.old, and it is routinely twenty to thirty gigabytes. Combine that with the update cache and a drive that was already tight, and the SSD loses the free space it needs to work quickly. This is the single most effective fix on a nearly full drive.
- Open Settings → System → Storage and look at how much free space is left on C:.
- Click Cleanup recommendations, then Temporary files, and tick Previous Windows installation(s) and Windows Update Cleanup.
- Remove them. This is also the point at which you lose the ability to roll back, so if you may want Fix 12, do that first.
- Turn Storage Sense on while you are here.
- Finally, open Terminal (Admin) and run the component store cleanup below.
DISM /Online /Cleanup-Image /StartComponentCleanup
Aim for at least 15 to 20 percent of the drive free. An SSD with almost no free space cannot manage its own housekeeping and slows down measurably.
✅ Verify it worked: free space jumps by tens of gigabytes and File Explorer feels immediately more responsive.
4Reinstall Graphics, Chipset And Storage Drivers
HIGH IMPACT 30 min
A feature update frequently swaps a manufacturer driver for Microsoft’s generic one. Everything still works, but graphics, storage and power management all run in a safe, slow mode. This is the classic cause of stuttering and dropped frames that appear on the day of an update.
- Find your exact model number — it is on the sticker underneath, or run msinfo32.
- Go to your laptop or motherboard maker’s support page for that model and download the current chipset, storage/RAID and power management drivers.
- For graphics, use the official NVIDIA, AMD or Intel installer for your card rather than Device Manager.
- Install, restart, and only then check Windows Update again for anything remaining.
⚠ Do not install a third-party driver updater. They install wrong packages, bundle extras, and are a frequent cause of exactly the background load you are trying to remove.
✅ Verify it worked: Device Manager shows the vendor name against your display adapter and storage controller instead of a generic Microsoft entry.
5Check SSD Health And Firmware The Correct Way
MEDIUM 15 min NO DATA LOSS
A tired or out-of-date drive shows up as slowness everywhere, and a feature update pushes far more writes at the drive than normal use does. Check it before you conclude Windows is at fault.
⚠ Ignore any guide that tells you to run wmic diskdrive get status. The wmic command has been removed from current Windows 11 builds. Use PowerShell instead.
- Right-click Start and open Terminal (Admin).
- Run the two commands below, one at a time.
- HealthStatus should read Healthy. Anything else means back up now and plan a replacement.
- Then check your drive maker’s support page for an SSD firmware update for your exact model. Firmware fixes for performance regressions are common and are applied with the maker’s own utility.
Get-PhysicalDisk | Select-Object FriendlyName, MediaType, HealthStatus, OperationalStatus
Get-StorageReliabilityCounter -PhysicalDisk (Get-PhysicalDisk) | Select-Object DeviceId, Wear, ReadErrorsTotal, WriteErrorsTotal
✅ Verify it worked: HealthStatus is Healthy, OperationalStatus is OK, and error counts are zero or negligible.
6Trim What Starts With Windows
MEDIUM 10 min NO DATA LOSS
Feature updates re-enable startup entries that you had switched off, and they restore “restart my apps after signing in”. If the first two minutes after login are the worst part, this is why.
- In Task Manager, open Startup apps and sort by Startup impact.
- Disable launchers, chat clients, cloud sync front-ends and any vendor updater. You can still open them yourself.
- Open Settings → Accounts → Sign-in options and turn off Automatically save my restartable apps and restart them when I sign back in.
- In Settings → Apps → Installed apps, open the heavy ones, choose Advanced options and set background permission to Never.
✅ Verify it worked: the desktop is usable within a few seconds of signing in rather than after a minute of churn.
7Repair System Files In The Right Order
HIGH IMPACT 40 min NO DATA LOSS
An update that installed over a damaged component store leaves Windows repairing itself in the background forever. The order matters here and most guides get it backwards: DISM repairs the source that SFC then copies from, so DISM runs first.
- Open Terminal (Admin).
- Run the DISM command and let it reach 100 percent. It can pause for a long time around 20 percent, which is normal.
- Then run sfc /scannow and let it finish.
- Restart, and if SFC reported repairs, run it once more to confirm it comes back clean.
DISM /Online /Cleanup-Image /RestoreHealth
sfc /scannow
✅ Verify it worked: SFC reports that it found no integrity violations.
8Turn Down Animations And Transparency
MEDIUM 5 min NO DATA LOSS
This does not make the machine faster, but it makes it feel considerably faster, because the delay you notice when a menu or window opens is the animation itself. On integrated graphics the difference is obvious.
- Open Settings → Accessibility → Visual effects and turn off Transparency effects and Animation effects.
- For the full set, press Windows + R, run sysdm.cpl, then Advanced → Performance → Settings.
- Choose Adjust for best performance, then tick Smooth edges of screen fonts back on so text stays readable.
- Apply and restart.
✅ Verify it worked: menus, Start and window switching respond instantly instead of fading in.
9Set The Power Mode And Rule Out Throttling
MEDIUM 10 min NO DATA LOSS
Updates reset the power profile, and a laptop left on a power-saving profile will feel sluggish no matter what else you fix. Separately, if the machine is slow only after it has been busy for a while, heat rather than software is holding it back.
- Open Settings → System → Power & battery and set Power mode to Balanced, or Best performance while plugged in.
- If your laptop has a vendor control app, make sure its profile matches. The vendor setting can override the Windows one.
- Open Task Manager’s Performance tab and watch the CPU Speed figure. If it starts high and settles far below the rated speed under load, that is thermal throttling and it is a cooling problem, not an update problem.
Note: Best performance does not cause overheating by itself. It allows the chip to boost for longer, which only becomes a problem if the vents are blocked or the fan is struggling.
✅ Verify it worked: clock speed holds up under load and performance no longer degrades the longer you work.
10Rebuild The Search Index
MEDIUM Runs overnight NO DATA LOSS
If the indexer has been busy for days rather than hours, the index itself is usually damaged and stuck in a loop. Rebuilding it fixes that properly. Disabling the service is the wrong answer, because it also takes away Start menu search and search inside File Explorer and your mail client.
- Open Settings → Privacy & security → Searching Windows.
- Click Advanced indexing options, then Advanced, then Rebuild.
- Leave the machine on and plugged in overnight. It will be busy while it works, and quiet afterwards.
- Optionally set Find my files to Classic so it indexes only your libraries and desktop rather than the whole drive.
⚠ If you want to prove indexing is the cause first, stop the Windows Search service in services.msc for ten minutes and compare. Then start it again and rebuild. Do not leave it disabled.
✅ Verify it worked: indexing reports completion, the disk goes quiet, and Start menu search returns results instantly.
11Clean Boot To Catch A Third-Party Culprit
MEDIUM 30 min NO DATA LOSS
Security suites, VPN clients, virtual drives and old utilities often break against a new Windows build. A clean boot tells you in half an hour whether the cause is Windows or something you installed.
- Press Windows + R, type msconfig and press Enter.
- On the Services tab, tick Hide all Microsoft services, then click Disable all.
- On the Startup tab, use Task Manager to disable everything remaining.
- Restart and use the PC normally for a while. If it is fast, re-enable services in small groups until it slows again — the last group you turned on contains the culprit.
- When you are done, return to msconfig and set Normal startup.
This is also the right place to test SysMain. Stop it in services.msc, use the machine for a day, and if nothing improves set it back to Automatic. On an SSD it rarely makes a measurable difference, so leaving it disabled permanently buys you nothing.
✅ Verify it worked: you can name one program that brings the slowness back, and removing or updating it fixes the machine.
12Roll Back 24H2, Or Reinstall As A Last Resort
LAST RESORT 1–3 hours
If nothing above helped, you have two proper exits. Rolling back is only possible for a short window after the update, so check it early rather than late.
Go back to the previous version
- Open Settings → System → Recovery.
- If Go back is available, use it. It is normally offered for about ten days after the update, and only while Windows.old still exists.
- Pause updates afterwards for a few weeks so 24H2 does not reinstall immediately.
Repair install, keeping your files
- Download the Installation Assistant or the ISO from Microsoft’s official Windows 11 download page.
- Run setup.exe from inside Windows and choose Keep personal files and apps. This replaces the system without touching your data.
- Only if that fails should you consider a clean install, and back everything up first.
⚠ Fix 3 removes the rollback option. If you think you may want to go back, do Fix 12 before you delete the previous Windows installation.
✅ Verify it worked: the machine performs the way it did before the update, with your files and apps intact.
Quick Reference — All 12 Fixes
| # | Fix | Best for | Time |
|---|---|---|---|
| 1 | Let servicing finish | Everyone, first | Hours |
| 2 | Sort Task Manager by Disk | Situation A | 10 min |
| 3 | Reclaim space, remove Windows.old | Situation B | 20 min |
| 4 | Vendor graphics and chipset drivers | Situation C | 30 min |
| 5 | SSD health and firmware | Slow everywhere | 15 min |
| 6 | Trim startup apps | Slow first two minutes | 10 min |
| 7 | DISM then SFC | Situation D | 40 min |
| 8 | Animations and transparency off | Feels laggy, not busy | 5 min |
| 9 | Power mode and throttling check | Laptops | 10 min |
| 10 | Rebuild the search index | Indexer busy for days | Overnight |
| 11 | Clean boot | Unexplained load | 30 min |
| 12 | Roll back or repair install | Nothing else worked | 1–3 hours |
Mistakes To Avoid
- Disabling Windows Search permanently. You lose Start menu search, File Explorer search and mail search to save a few hours of one-off indexing.
- Treating SysMain as a fix. On an SSD it is usually neutral. Test it, then put it back.
- Judging by CPU alone. After a feature update the drive is the bottleneck far more often than the processor.
- Deleting the previous Windows installation on day one. That removes your ability to roll back if the update turns out to be the problem.
- Installing a registry cleaner or “PC optimiser”. These add background load and can break more than they fix.
- Running SFC before DISM. SFC repairs from the component store, so a damaged store has to be repaired first.
- Buying RAM or an SSD before measuring. Check memory pressure and drive health first; the fix is often free.
The Order To Follow
- Leave it plugged in and idle for a few hours, then restart twice
- Sort Task Manager by Disk and name the process
- Decide about rolling back before you delete the old Windows
- Free up space and clean the component store
- Install vendor graphics, chipset and storage drivers
- Check drive health and firmware
- Trim startup apps, then turn off animations
- Run DISM, then SFC
- Rebuild the search index overnight if the indexer never settles
- Clean boot to find a third-party cause
- Repair install, keeping files, only if all of the above failed
Most machines are fixed by steps one to five, and those cost nothing but time. The later steps exist for the minority where something genuinely broke.
Frequently Asked Questions
How long should a PC stay slow after the 24H2 update?
A few hours of background work is normal, and up to a day or two on a large drive with many files. If it is still slow after two or three days of ordinary use, something needs fixing rather than waiting out.
Why does my disk sit at 100% when I am not doing anything?
Usually the search indexer, the update servicing task, or a post-update antivirus scan. Sort Task Manager by Disk to see which. If free space is very low, that alone can keep the drive pinned.
Is it safe to delete the previous Windows installation?
Yes, and it frees a large amount of space. The only cost is that you can no longer use Go back to return to your old version, so decide about that first.
Should I disable SysMain and Windows Search?
Not permanently. Use them as short tests to identify the cause, then turn them back on. Disabling Search costs you the whole search feature, and disabling SysMain rarely changes anything on an SSD.
Why does wmic not work any more?
The wmic command-line tool has been retired in current Windows 11 builds, so guides that use it fail on 24H2. Use the PowerShell commands in Fix 5 instead.
How much free disk space does Windows 11 need to run well?
Aim for at least fifteen to twenty percent of the drive free. Below that, an SSD cannot manage its own housekeeping efficiently and everything feels slower.
Can I still roll back if it has been more than ten days?
Normally no. Once the rollback window closes, or once the previous installation has been cleaned up, the remaining option is a repair install that keeps your files and apps.
Do I need more RAM, or is the update the problem?
Check the Memory section of Task Manager’s Performance tab while you work normally. If committed memory is constantly near the limit and the disk is busy paging, more memory genuinely helps. If not, the slowness is elsewhere.
Will turning off Widgets and Copilot make a real difference?
A small one on a machine that is short of memory, and effectively none on a healthy system. Do it if you do not use them, but do not expect it to be the answer.
📌 Still slow after all twelve?
Tell us which process holds the Disk column, how much free space is on C:, and whether it started the day of the update. That is usually enough to pin it down.
Contact us Start here