Windows Fixes

Fix Windows Update Error 0x80071a2d

Issue type: Windows Update install failure | Applies to: Windows 10, Windows 11

Windows update error 0x80071a2d usually appears when Windows downloads an update but fails while applying it to the system. The strongest fix is to repair the Windows component store with DISM, run SFC after that, reset the Windows Update cache, and then retry the failed KB update.

This is not usually a simple internet problem. If the update reaches the install stage and then fails, Windows may be dealing with damaged servicing files, a broken update queue, an incomplete previous update, or a component store transaction that cannot finish.

Open Settings → Windows Update → Update history and write down the KB number that failed. Also make sure the C: drive has at least 10 GB free before running repair commands.

What to Do First: Fix Windows Update Error 0x80071a2d

  1. Restart the PC once and confirm the same error returns.
  2. Open Update history and copy the failed KB number.
  3. Make sure the C: drive has enough free space.
  4. Open Terminal or Command Prompt as Administrator.
  5. Run DISM first, then SFC after it finishes.
  6. Restart and try Windows Update again.

Fix 2: Repair the Windows Component Store with DISM

DISM is the deepest safe repair for Windows Update servicing failures. It checks whether the Windows image is damaged and can restore missing or corrupted component store files that cumulative updates need.

DISM /Online /Cleanup-Image /CheckHealth
DISM /Online /Cleanup-Image /ScanHealth
DISM /Online /Cleanup-Image /RestoreHealth

Wait for the repair to finish even if the percentage pauses. DISM can sit at the same number for several minutes while it verifies or downloads repair data.

Fix 3: Run SFC After DISM

SFC should run after DISM. DISM repairs the source Windows uses for repairs, while SFC checks protected files and restores them from that repaired source.

sfc /scannow

Restart after SFC completes. If SFC cannot repair some files, run DISM again, restart, and repeat SFC once more.

Fix 4: Clear the Windows Update Download Cache

If the same update keeps failing, the downloaded package may be damaged or incomplete. Clearing the download cache forces Windows to fetch a fresh copy.

net stop wuauserv
net stop bits
del /f /s /q "%SystemRoot%\SoftwareDistribution\Download\*"
net start bits
net start wuauserv

Restart and check for updates again. If Windows Update stops downloading after this, use Windows Update not downloading.

Fix 5: Reset SoftwareDistribution and Catroot2

If a simple cache clear is not enough, rebuild the two main folders Windows uses to stage and verify update packages.

net stop wuauserv
net stop bits
net stop cryptSvc
net stop msiserver
ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
ren C:\Windows\System32\catroot2 catroot2.old
net start msiserver
net start cryptSvc
net start bits
net start wuauserv

Restart after the commands. If the update becomes stuck pending instead of failing, use Windows Update pending install.

Fix 6: Install the Failed KB Manually

If one KB fails repeatedly, install that KB manually after repairs. Copy the KB number from Update history, download the matching package from Microsoft Update Catalog, and run it as Administrator.

DISM /Online /Add-Package /PackagePath:"C:\Users\YourName\Downloads\update.msu"

If DISM returns a new error code, use that code for the next diagnosis. It is often more specific than the original Windows Update message.

Fix 7: Check CBS and DISM Logs

If the update still fails, check the servicing logs instead of guessing. Search for 0x80071a2d, the failed KB number, failed, corrupt, and package.

C:\Windows\Logs\CBS\CBS.log
C:\Windows\Logs\DISM\dism.log

Fix 8: Check Disk Health

Repeated servicing corruption can come from file system errors. Check the system drive before assuming Windows needs to be reinstalled.

chkdsk C: /scan

If repairs are needed, run chkdsk C: /f, restart, and let the disk repair complete before trying Windows Update again.

Fix 9: Use an In-Place Repair Upgrade as a Final Repair

If DISM, SFC, update reset, manual installation, logs, and disk checks all point to deep servicing damage, use an in-place repair upgrade. It reinstalls Windows over itself while keeping apps and files.

Common Mistake

The common mistake is clicking Retry again and again without repairing the Windows servicing system. Windows update error 0x80071a2d usually returns because the same component store or update queue problem still exists.

Best Next Step

If the error continues after all repair steps, use Microsoft’s official Windows image repair guidance before attempting a repair upgrade: Repair a Windows Image — Microsoft Learn.

Frequently Asked Questions

What does Windows Update error 0x80071a2d mean?

It usually means Windows failed while applying update changes to the servicing system. The update may download correctly, but Windows cannot complete the install phase.

Can I fix 0x80071a2d without reinstalling Windows?

Yes. Most cases can be fixed with DISM, SFC, Windows Update cache reset, service repair, or manual KB installation.

Should I run DISM or SFC first?

Run DISM first, then SFC. DISM repairs the component store, and SFC uses that repaired store to restore protected system files.

Why does the same update keep failing after every restart?

The update likely keeps retrying from the same broken cache or blocked service state. Reset Windows Update instead of only restarting.

Is it safe to delete SoftwareDistribution?

It is safer to rename SoftwareDistribution than permanently delete it. Windows will recreate a fresh folder after restart.