Fix Reset This PC Failing Because of a Stuck Pending Update on Windows 11
🔍 WiseChecker

Fix Reset This PC Failing Because of a Stuck Pending Update on Windows 11

Quick fix: Reset This PC checks for pending Windows Updates before starting. If one is stuck partially-installed, Reset refuses to proceed. Clear it by running Dism /Online /Cleanup-Image /StartComponentCleanup, then wuauclt /resetauthorization /detectnow, and finally check Windows Update for the pending item — install or uninstall it before retrying Reset.

You click Reset This PC, the wizard accepts your choices, and a few seconds later you see There was a problem resetting your PC. No changes were made. The Reset never starts. Looking at Windows Update history, you spot an entry stuck in “Pending install” or “Pending restart” that’s been there for weeks. That stuck update is the block.

Symptom: Reset This PC fails immediately with “No changes were made,” and Windows Update history shows a stuck pending update.
Affects: Windows 11 (any edition).
Fix time: 30–60 minutes.

ADVERTISEMENT

Why a stuck update blocks Reset

Reset This PC works by composing a clean OS image from the current servicing stack state. If an update is partly applied — downloaded but not committed, or committed but never finalized — the servicing stack can’t produce a consistent image. Reset detects the inconsistency in its pre-flight check and aborts before doing anything irreversible.

You have to either complete the stuck update (apply it and reboot) or roll it back (remove it from the queue) before Reset will run. Either path produces a consistent state that Reset can work from.

Method 1: Clean up the component store and retry

  1. Open an elevated Command Prompt.
  2. Run:

    Dism /Online /Cleanup-Image /StartComponentCleanup

    (takes 5–30 minutes; cleans up superseded servicing components)
  3. Run:

    Dism /Online /Cleanup-Image /RestoreHealth

    (repairs the component store using Windows Update as source; 10–20 minutes)
  4. Reboot.
  5. Try Reset This PC again.

If the component store was the issue, Reset proceeds. About half of stuck-Reset cases resolve here.

ADVERTISEMENT

Method 2: Force the stuck update to install or be removed

If component cleanup didn’t help, address the specific stuck update directly.

  1. Open Settings → Windows Update → Update history.
  2. Look for any update with status Pending or Failed. Note the KB number.
  3. Visit https://catalog.update.microsoft.com, search for the KB, download the standalone installer (.msu file) matching your Windows version and architecture.
  4. Run the .msu installer as Administrator. If it installs successfully, reboot and the pending state clears.
  5. If the .msu also fails, the update isn’t actually missing — it’s in a half-state. Remove it: open Command Prompt as Admin, run wusa /uninstall /kb:XXXXXXX (use your KB number without the “KB” prefix). Reboot.
  6. If wusa reports the update isn’t installed, force-remove the pending record:

    net stop wuauserv

    net stop bits

    ren %systemroot%\SoftwareDistribution SoftwareDistribution.old

    net start wuauserv

    net start bits

    This wipes the Windows Update queue. Open Windows Update again and run Check for updates; the stuck KB no longer appears.

Now retry Reset This PC. The pre-flight check should pass.

Method 3: Reset from the recovery environment instead

If both methods above fail, run Reset from WinRE rather than from inside Windows — WinRE bypasses some of the in-Windows pre-flight checks.

  1. Open Settings → System → Recovery.
  2. Under Advanced startup, click Restart now.
  3. After reboot, choose Troubleshoot → Reset this PC.
  4. Choose Keep my files or Remove everything, follow the wizard.
  5. Reset proceeds without the stuck-update block.

Note: WinRE-initiated Reset uses a different code path and may succeed where the in-Windows path failed. It’s a valid fallback when other fixes don’t resolve the block.

How to verify the fix worked

  • Reset This PC proceeds past the pre-flight check and shows the resetting progress screen.
  • After Reset completes, open Settings → Windows Update → Update history. No pending or failed entries.
  • Run Dism /Online /Cleanup-Image /CheckHealth. The output reads No component store corruption detected.

If none of these work

If Reset still fails after component cleanup, KB clearing, and WinRE attempts, the underlying servicing stack itself may be broken — download the latest Servicing Stack Update for your Windows version from the Microsoft Update Catalog and install it before retrying. For a system that can’t boot to clean Windows, perform an in-place repair upgrade (run setup.exe from a Windows 11 install USB, choose Keep my files and apps) — this refreshes the servicing stack along with system files without wiping user data. As a last resort, reinstall fresh using Custom: Install Windows only from the USB; your old data goes to a Windows.old folder, recoverable afterward.

Bottom line: Reset failing “no changes were made” almost always points to a stuck Windows Update. Clear the component store, resolve the pending KB, and Reset proceeds. WinRE provides a fallback when the in-Windows path stays blocked.

ADVERTISEMENT