}

Breaking

Saturday, June 6, 2026

Windows 11 Suddenly Started Freezing After an Update — These Fixes Actually Worked for Me

Nothing kills your workflow faster than a frozen screen. You’re mid-email, mid-game, or mid-article — and suddenly your mouse stops responding, the cursor turns into a spinning wheel, and the only thing moving is your frustration. If your Windows 11 PC started freezing right after a recent update, you’re not imagining it. I’ve been there, and I’ve spent the past few days digging through forums, testing fixes, and talking to other users who hit the same wall.

Here’s the good news: most of these freezes are fixable without a full reinstall. The bad news? Microsoft’s recent cumulative updates — particularly KB5083769 from April 2026 and the broader Patch Tuesday rollouts — have introduced some real stability headaches for Windows 11 users on both 24H2 and 25H2 builds. Reports range from random 60-second lockups to full boot loops with pixelated crash screens. In this guide, I’ll walk you through the fixes that actually worked for me and thousands of other users, in the order that makes the most sense.

Windows 11 desktop screen showing a system freeze with task manager open

Why Windows 11 Freezes After Updates

Before we start clicking through menus, it helps to understand what’s actually going wrong. Windows cumulative updates are massive bundles — they touch everything from the boot loader to network drivers to the display stack. When one of those components conflicts with your hardware or a third-party app, the result is a freeze.

Microsoft’s April 2026 security update (KB5083769) has been especially problematic. It introduced changes to Secure Boot certificate management, added vulnerable kernel drivers to Microsoft’s blocklist, and modified the Background Intelligent Transfer Service (BITS) — a core component that handles background downloads for Windows Update, Outlook, and other apps. Multiple users confirmed that uninstalling this specific update immediately resolved their freezing issues. ZDNet also reported that the January 2026 update caused classic Outlook to freeze entirely, along with app crashes when accessing cloud storage. It’s a pattern that keeps repeating: a security fix breaks something else.

Fix 1: Uninstall the Problematic Update

If your PC was rock-solid before the update and started freezing right after, this is your first move. It’s also the fastest.

  1. Press Windows + I to open Settings.
  2. Go to Windows UpdateUpdate history.
  3. Scroll down and click Uninstall updates.
  4. Find the most recent cumulative update (look for KB numbers like KB5083769, KB5089549, or similar).
  5. Click Uninstall and restart your PC when prompted.

If Windows won’t let you uninstall from Settings, you can also do it via Command Prompt as administrator:

wusa /uninstall /kb:5083769

Replace the KB number with whatever update is causing trouble on your system. After the reboot, check if the freezing stops. If it does, you’ve found your culprit. You can then pause updates temporarily or use Microsoft’s “Show or hide updates” troubleshooter to block that specific patch from reinstalling.

Fix 2: Run DISM, SFC, and CHKDSK

Sometimes the update itself isn’t broken — it just corrupted a few system files during installation. That’s where Microsoft’s built-in repair tools come in. You don’t need to download anything sketchy. Just open Command Prompt as administrator and run these three commands in order:

Step 1 — DISM (Deployment Image Servicing and Management):

DISM.exe /Online /Cleanup-image /Restorehealth

This scans the Windows system image and repairs corruption using files from Windows Update. It can look stuck for a minute or two — that’s normal. Be patient.

Step 2 — SFC (System File Checker):

sfc /scannow

This checks for corrupted or missing Windows system files and replaces them automatically.

Step 3 — CHKDSK (Check Disk):

chkdsk C: /f /r

It’ll tell you the drive is in use and ask to schedule the scan on next restart. Type Y, hit Enter, and reboot. The scan will run before Windows loads. These three tools fixed random freezes for a lot of users who thought their hardware was failing — when it was really just file corruption from a bad update.

Fix 3: Check and Update Your Drivers

Outdated or incompatible drivers are one of the biggest causes of post-update freezes. The update might have changed how Windows interacts with your GPU, chipset, or storage controller — and if your driver is old, things break.

  • Graphics drivers: Head to NVIDIA, AMD, or Intel’s website and download the latest driver for your GPU. Don’t rely on Windows Update for this — it often serves outdated versions.
  • Chipset drivers: Visit your motherboard or laptop manufacturer’s support page. AMD and Intel both release regular chipset updates that improve stability.
  • BIOS/UEFI: If you’re on an older BIOS version, a firmware update can resolve compatibility issues with newer Windows builds. Just be careful and follow your manufacturer’s instructions exactly.

One user with an ASUS ROG Strix X570-E motherboard and a Ryzen processor found that updating their BIOS and chipset drivers resolved persistent freezing after a Windows 11 update. It’s worth the 15 minutes.

Person troubleshooting a Windows laptop on a clean desk with multiple monitors

Fix 4: Disable Fast Startup

Fast Startup is a hybrid shutdown feature that’s supposed to make your PC boot faster. In reality, it often causes more problems than it solves — especially after major updates. It can leave drivers and services in a weird state that triggers freezes.

  1. Open Control PanelPower Options.
  2. Click Choose what the power buttons do on the left.
  3. Click Change settings that are currently unavailable.
  4. Uncheck Turn on fast startup (recommended).
  5. Click Save changes.

Several users reported that simply turning this off eliminated their random freezes entirely. It’s one of those “why does this even exist” Windows features.

Fix 5: Perform a Clean Boot

If the freeze only happens after Windows fully loads, a third-party app or background service might be clashing with the new update. A clean boot starts Windows with only essential Microsoft services running — no startup apps, no bloatware.

  1. Press Windows + R, type msconfig, and hit Enter.
  2. Go to the Services tab.
  3. Check Hide all Microsoft services.
  4. Click Disable all.
  5. Switch to the Startup tab and click Open Task Manager.
  6. Disable every startup item in Task Manager.
  7. Restart your PC.

If the freezing stops in clean boot mode, you know it’s a software conflict. Re-enable services and startup items in small batches until you find the offender. Common culprits include aggressive antivirus suites, RGB control software, and older backup tools.

Fix 6: Check Event Viewer and Reliability Monitor

Before you start throwing fixes at the wall, let Windows tell you what’s actually wrong. These built-in tools log every crash, hang, and error.

Reliability Monitor is the easier one to read. Search for it in the Start menu, and you’ll see a timeline with red X marks showing exactly when your system had problems. Double-click any red flag to see what Windows thinks caused it.

Event Viewer is more detailed but also more intimidating. Press Windows + X, choose Event Viewer, then navigate to Windows Logs → System. Look for yellow warnings or red errors around the time your freeze happened. If you see repeated errors from a specific driver or service (like IntelTACD or BITS), that’s your smoking gun.

Fix 7: Check Your Disk Health

A failing hard drive or SSD can masquerade as a software freeze. When the drive stops responding for a few seconds, everything on your screen locks up until it recovers.

Download CrystalDiskInfo (it’s free and safe) and check your drive’s SMART status. If it shows anything other than “Good,” back up your data immediately and consider replacing the drive. You can also check disk activity in Task Manager (Ctrl + Shift + Esc → Performance tab → Disk) — if it spikes to 100% right before a freeze, your storage is likely the bottleneck.

Fix 8: Reset Network Settings

This one sounds random, but it’s worked for multiple users reporting freezes tied to BITS and background downloads. A corrupted network stack can cause background services to hang, which freezes the entire desktop.

  1. Go to Settings → Network & internet → Advanced network settings.
  2. Click Network reset.
  3. Click Reset now and restart.

One AutoCAD user confirmed this fixed their daily freezing issue after a Windows update. It’s quick, harmless, and worth trying before anything more drastic.

Fix 9: Repair Install (In-Place Upgrade)

If nothing else works and you really don’t want to wipe your PC, a repair install refreshes all Windows system files without touching your personal data or apps. It’s like giving your OS a deep clean.

  1. Download the Windows 11 Media Creation Tool from Microsoft’s official site.
  2. Run it and choose Create installation media for another PC → save as an ISO file.
  3. Right-click the ISO and choose Mount.
  4. Run setup.exe from the mounted drive.
  5. When prompted, choose Keep personal files and apps.
  6. Follow the on-screen prompts.

This process takes about 30–45 minutes but has resolved stubborn freeze issues for users when all other fixes failed.

Pros & Cons of Rolling Back vs. Repairing

ApproachProsCons
Uninstall the updateFast, reversible, no data lossLeaves you without the security patch; Windows may reinstall it
DISM + SFC + CHKDSKFixes corruption without removing updatesTakes time; may not help if the update itself is buggy
Clean bootIdentifies software conflictsTedious to narrow down the exact culprit
Repair installRefreshes system files, keeps dataTime-consuming; requires re-downloading Windows
Full resetGuaranteed clean slateLoses apps and settings unless you back up carefully

Expert Tip: Pause Updates and Watch the Forums

Here’s something Microsoft won’t tell you upfront: not every update is ready for prime time. If your PC is stable now, pause Windows updates for a week or two after each Patch Tuesday. Let the early adopters find the bugs. Check Microsoft’s known issues page, Reddit’s r/WindowsHelp, and the Microsoft Q&A forums before you click “Install.” The April 2026 update (KB5083769) caused boot loops, BITS freezes, and backup app failures — and Microsoft didn’t flag these as known issues until days later. A little patience saves a lot of headache.

FAQ

Why does Windows 11 freeze only after updates?

Updates modify core system files, drivers, and services. If the new code conflicts with your hardware or a third-party app, the system can lock up. Cumulative updates are especially risky because they bundle dozens of changes at once.

Is it safe to uninstall a Windows security update?

Temporarily, yes — if it’s the only way to restore stability. Just don’t leave your PC unpatched for long. Once Microsoft releases a corrected update or you confirm the issue is fixed, re-enable updates and try again.

How do I stop Windows from reinstalling a bad update?

Download Microsoft’s Show or Hide Updates troubleshooter. Run it, select the problematic update, and choose to hide it. Windows will skip that patch until you manually unhide it.

Can a failing SSD cause freezing that looks like a software bug?

Absolutely. If your disk hits 100% usage in Task Manager during a freeze, or if CrystalDiskInfo shows warnings, your drive could be the real problem — not the update.

Should I upgrade to Windows 11 25H2 to avoid these issues?

Not necessarily. Both 24H2 and 25H2 have been affected by the same buggy updates. Newer isn’t always more stable. Focus on driver and BIOS updates instead of chasing the latest Windows build.

Final Thoughts

Windows 11 freezing after an update is one of the most annoying PC problems because it feels so out of your control. But in most cases, you can fix it. Start with the simplest solution — uninstall the recent update. If that doesn’t work, move through DISM, driver updates, clean boot, and disk health checks. The repair install is your nuclear option, and it works more often than you’d think.

The real takeaway? Don’t blindly install every Windows update the moment it drops. Microsoft’s track record in 2025 and 2026 has been rough — boot loops, BITS failures, and app breakages have become frustratingly common. Give it a week. Read the forums. Your sanity (and your workflow) will thank you.

🎥 Recommended Video

https://www.youtube.com/results?search_query=Windows+11+freeze+after+update+fix

No comments:

Post a Comment