The Windows Update Error 0x80070057 is a common issue that occurs when Windows updates fail to install properly. This error can be caused by corrupted system files, incorrect registry settings, or Windows Update service issues.
Understanding Windows Update Error 0x80070057
Windows Update Error 0x80070057 often appears when there is a problem with the update installation process. If left unresolved, it can prevent your system from receiving important security patches and feature updates.
Solution 1: Run the Windows Update Troubleshooter
- Open Settings (Win + I) and navigate to Update & Security.
- Click on Troubleshoot and select Additional troubleshooters.
- Under Get up and running, select Windows Update and click Run the troubleshooter.
- Follow the on-screen instructions and apply any suggested fixes.
Solution 2: Reset Windows Update Components
If the troubleshooter does not resolve the issue, try resetting Windows Update components:
net stop wuauserv
net stop cryptSvc
net stop bits
net stop msiserver
ren C:WindowsSoftwareDistribution SoftwareDistribution.old
ren C:WindowsSystem32catroot2 catroot2.old
net start wuauserv
net start cryptSvc
net start bits
net start msiserver
Restart your computer and try updating again.
Solution 3: Check System File Integrity
Corrupt system files can cause update errors. Run the following commands to check and repair system files:
sfc /scannow
Dism /Online /Cleanup-Image /RestoreHealth
After the process completes, restart your computer and try updating again.
Solution 4: Modify the Registry
Sometimes, incorrect registry settings cause the update error. Modify the registry as follows:
- Press Win + R, type
regedit
, and press Enter. - Navigate to
HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsUpdateUX
. - Locate IsConvergedUpdateStackEnabled and change its value to 0.
- Restart your computer and try updating again.
Solution 5: Manually Install the Update
- Go to the Microsoft Update Catalog.
- Search for the update using its KB number.
- Download the appropriate version for your system.
- Double-click the downloaded file to install the update manually.
Additional Resources
For more troubleshooting tips and official Microsoft updates, visit the Microsoft Support Page.
Leave a Reply