Fix Windows Update Error 0x80070032 (Request Not Supported)
Fix Windows Update error 0x80070032 (request not supported) on Windows 11 and 10. Learn WinRE fixes, system repairs, and update component resets.

Quick AnswerError 0x80070032 blocks Windows feature updates with "The request is not supported" message. Fix it by enabling Windows Recovery Environment (WinRE), running SFC/DISM scans, resetting Windows Update components, or repairing system files. Disabled WinRE is a common cause.
Error 0x80070032 appears during Windows feature updates with the message “The request is not supported” or “Windows could not install the following update with error 0x80070032.” This error blocks major Windows updates (like 24H2 or 23H2) and prevents cumulative updates from installing. The error code translates to an unsupported operation that Windows Update can’t complete.
The 8 fixes below cover Windows 11 (24H2) and Windows 10 (22H2) and target every common cause of this update error in 2026.
- Disabled Windows Recovery Environment (WinRE) is the most common trigger for 0x80070032 — run “reagentc /info” to check and “reagentc /enable” to fix.
- SFC and DISM scans together repair corrupted system files and resolve many cases where WinRE is already enabled.
- Resetting Windows Update components by renaming SoftwareDistribution and catroot2 folders fixes a good share of the remaining errors.
- The built-in Windows Update Troubleshooter detects and repairs update database corruption automatically.
- As a last resort, an in-place upgrade using the Media Creation Tool fixes nearly all persistent 0x80070032 errors while preserving files and apps.
#What Causes Error 0x80070032?
The most common causes are: According to Microsoft Support’s Windows Update troubleshooting guide, failed updates should be handled with Windows Update repair steps before reinstalling Windows.
- Disabled Windows Recovery Environment - WinRE required for certain updates (the most common cause)
- Corrupted system files - Damaged Windows files preventing update installation
- Broken Windows Update components - Corrupted update services or cache
- Incompatible software conflicts - Third-party programs blocking updates
Among these four, a disabled Windows Recovery Environment (WinRE) is the most consistent trigger. According to Appuals’ Windows Update error guide, WinRE being disabled is the primary cause of error 0x80070032.
#Fix 1: Enable Windows Recovery Environment (WinRE)
This fixes many error 0x80070032 cases. Windows Recovery Environment must be enabled for certain feature updates to install.
Open Command Prompt as admin and run:
reagentc /info
If the output shows “Windows RE status: Disabled,” run:
reagentc /enable
Restart your PC and try installing updates again.
When WinRE has been disabled after earlier troubleshooting, the 24H2 update fails with 0x80070032 until WinRE is turned back on. Enabling it and restarting clears the error. PositionIsEverything’s technical solution also identifies a disabled WinRE as the primary cause of this error.

#Check WinRE Partition
If enabling WinRE fails, the recovery partition might be missing or corrupted. Run:
diskpart
list disk
select disk 0
list partition
Look for a recovery partition (usually 500MB-1GB). If missing, you may need to recreate it or perform an in-place upgrade.
When the recovery partition has been deleted, recreating it from Windows installation media lets WinRE enable successfully so updates can install.
#Fix 2: Run SFC and DISM Scans
Corrupted system files prevent Windows from completing update operations. SFC and DISM repair these files.
Open Command Prompt as admin and run:
sfc /scannow
If SFC finds issues it can’t repair, run:
DISM /Online /Cleanup-Image /RestoreHealth
Then run SFC again:
sfc /scannow
When corrupted system files are to blame, SFC finds and repairs them, and cumulative updates then install without error 0x80070032 after a restart. Kapilarya’s error code fix also recommends running SFC + DISM together to repair system file corruption blocking updates.

#Fix 3: Reset Windows Update Components
If system files are fine, Windows Update components might be corrupted. Resetting them forces Windows to rebuild the update system.
Open Command Prompt as admin and run these commands:
net stop wuauserv
net stop cryptSvc
net stop bits
net stop msiserver
ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
ren C:\Windows\System32\catroot2 catroot2.old
net start wuauserv
net start cryptSvc
net start bits
net start msiserver
When SFC doesn’t clear the error, resetting the update components and restarting lets the feature update download and install successfully. PCNMobile’s Windows 11 solution also recommends resetting update components when system files aren’t the issue.
#Fix 4: Run Windows Update Troubleshooter
The built-in troubleshooter can detect and fix common update issues that cause error 0x80070032.
Go to Settings > System > Troubleshoot > Other troubleshooters. Click Run next to Windows Update. Wait for the scan to complete and apply any recommended fixes.
In cases where the update database is corrupt, the troubleshooter reports “Windows Update database may be corrupt,” repairs it, and updates install after a restart. As UGetFix’s update error guide describes, the troubleshooter resolves many update-related 0x80070032 errors caused by database corruption.
#Fix 5: Disable Third-Party Antivirus
Third-party antivirus software can block Windows Update operations and cause error 0x80070032.
Right-click your antivirus icon in the system tray and select Disable protection or Pause protection for 15 minutes. Then try installing updates again.
Third-party suites like Kaspersky can make Windows Update fail with 0x80070032 every time. Pausing the antivirus for the duration of the update lets it install successfully. TechCult’s Microsoft error fix also notes that antivirus interference is a recognized cause of 0x80070032 errors.
Important: Re-enable your antivirus after updates complete.
#Fix 6: Perform a Clean Boot
A clean boot starts Windows with minimal drivers and services, helping identify software conflicts that cause error 0x80070032.
Press Windows + R, type msconfig, and press Enter. Go to Services tab, check “Hide all Microsoft services,” then click “Disable all.” Go to Startup tab, click “Open Task Manager,” and disable all startup items. Restart your PC.
In clean boot mode, try installing updates. If they install successfully, a third-party service was causing the conflict.
When other fixes don’t work, a clean boot often lets updates install, and re-enabling services one at a time afterward pinpoints the conflicting program (an outdated backup tool is a frequent culprit). UMATechnology’s update error fix also recommends clean boot to isolate software conflicts causing the error.

#Fix 7: Check Disk for Errors
Disk errors can corrupt Windows Update files and cause error 0x80070032. Check your drive’s health with CHKDSK.
Open Command Prompt as admin and run:
chkdsk C: /f /r
The scan runs on next restart and takes 30-60 minutes depending on drive size.
On an aging hard drive, CHKDSK can find and repair bad sectors, after which Windows updates install without error 0x80070032. According to Laptops251’s Windows solution, disk errors are a cause of update failures.
#What If Error 0x80070032 Persists?
If all fixes fail, perform an in-place upgrade to repair Windows without losing files.
Download the Media Creation Tool from Microsoft’s website. Run it and select Upgrade this PC now. Follow the prompts to reinstall Windows while keeping your files and apps.
As a last resort for a PC with persistent error 0x80070032, an in-place upgrade takes about 60 minutes and clears the update errors while preserving all files and apps.
For more on other Windows Update errors and upgrade failures, check our related guides. They cover common Windows servicing failures, rollback procedures, and step-by-step recovery flows across Windows 10 and Windows 11 builds, with screenshots, command references, and notes on which fixes apply to home versus business editions.
If you hit related system errors after applying the fixes above, see our detailed walkthroughs on activation issues and boot problems, which often surface alongside update failures on the same machine and share root causes such as corrupted system files or broken recovery partitions.
For crash diagnostics, our blue screen errors guide covers common stop codes you may encounter after a failed update.
#Bottom Line
Check if Windows Recovery Environment is enabled by running reagentc /info in Command Prompt. If it’s disabled, reagentc /enable fixes the problem in about half of all cases. For the rest, SFC/DISM scans and resetting update components will get your updates working again.
#Frequently Asked Questions
What does error 0x80070032 mean?
Error 0x80070032 means “The request is not supported.” It usually means Windows Recovery Environment is disabled or system files are corrupted.
How do I fix Windows Update error 0x80070032?
Enable Windows Recovery Environment by running reagentc /enable in Command Prompt as admin. If WinRE was already enabled, run SFC and DISM scans to repair corrupted system files. Reset Windows Update components by renaming SoftwareDistribution and catroot2 if scans don’t help. Finally, check your disk for errors with chkdsk C: /f /r. This sequence covers all four root causes in order of likelihood and takes about 45 minutes to complete.
Why does error 0x80070032 keep appearing?
Recurring errors usually mean WinRE keeps getting disabled or system files stay corrupted. Check WinRE status with reagentc /info after each update.
Can disabled WinRE cause error 0x80070032?
Yes. Disabled Windows Recovery Environment is the number one cause of this error. Feature updates require WinRE. Run reagentc /enable and restart. This takes under 2 minutes and fixes about half of all cases. If WinRE fails to enable, the recovery partition may be missing or damaged, and you’ll need to recreate it using Windows installation media before updates can proceed.
Is error 0x80070032 dangerous?
No. The error just blocks updates from installing. But missing security updates leaves your system exposed, so fix it soon.
How long does it take to fix error 0x80070032?
Enabling WinRE takes 1-2 minutes. SFC and DISM scans take 20-40 minutes. Most cases resolve within 1 hour total. In-place upgrades take 60-90 minutes but fix many persistent errors that nothing else resolves.
Can I prevent error 0x80070032?
Keep WinRE enabled, run SFC scans quarterly, and don’t force-shutdown during updates. These habits prevent most causes.



