
How to fix Windows update error 0x800f081f
June 11, 2026
How to fix Windows update error 0x80070002
June 11, 2026Windows Update Error 0x80070057 is one of the most common issues encountered by Windows users. Whether you’re running Windows 11 or Windows 10, this error can prevent important security updates, feature updates, and cumulative patches from installing correctly.
The error usually appears with messages such as:
- “Something went wrong”
- “Windows could not install updates”
- “Error code: 0x80070057”
- “The parameter is incorrect”
Fortunately, there are several proven methods to resolve this issue without reinstalling Windows.
What Causes Error 0x80070057?
The 0x80070057 error typically occurs when Windows Update encounters corrupted files, damaged system components, or incorrect configuration settings.
Common Causes
| Cause | Description |
|---|---|
| Corrupted Update Files | Windows Update cache becomes damaged |
| Missing System Files | Essential Windows files are corrupted |
| Disk Errors | Storage problems interrupt updates |
| Registry Issues | Incorrect update-related settings |
| Failed Previous Updates | Incomplete update installation |
| Insufficient Storage | Not enough free space for updates |
Method 1: Run the Windows Update Troubleshooter
Microsoft includes a built-in tool specifically designed to fix update-related issues.
Steps
- Open Settings
- Click System
- Select Troubleshoot
- Click Other Troubleshooters
- Find Windows Update
- Click Run
Allow Windows to detect and repair any update problems automatically.
Why This Works
The troubleshooter can:
- Restart update services
- Repair update components
- Clear temporary update files
- Detect configuration errors
Method 2: Restart Windows Update Services
Sometimes Windows Update services become stuck or stop responding.
Open Command Prompt as Administrator and run:
net stop wuauserv
net stop bits
net stop cryptsvc
net stop msiserver
Then restart them:
net start wuauserv
net start bits
net start cryptsvc
net start msiserver
Restart your computer and try installing updates again.
Method 3: Run SFC Scan
Corrupted system files frequently trigger Error 0x80070057.
Command
sfc /scannow
What It Does
System File Checker scans all protected Windows files and automatically repairs damaged components.
| Tool | Purpose |
| SFC | Repairs system files |
| DISM | Repairs Windows image |
| CHKDSK | Repairs disk errors |
After completion, restart your PC.
Method 4: Repair Windows Image with DISM
If SFC cannot fix the issue, use Deployment Image Servicing and Management (DISM).
Run these commands one at a time:
DISM /Online /Cleanup-Image /CheckHealth
DISM /Online /Cleanup-Image /ScanHealth
DISM /Online /Cleanup-Image /RestoreHealth
Benefits of DISM
- Repairs Windows Update corruption
- Fixes damaged update packages
- Restores missing system files
- Repairs Windows component store
After DISM finishes, restart the computer.
Method 5: Clear the SoftwareDistribution Folder
Windows stores update files inside the SoftwareDistribution folder.
If these files become corrupted, updates may fail.
Stop Update Services
net stop wuauserv
net stop bits
Rename Update Cache
ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
Restart Services
net start wuauserv
net start bits
Windows will automatically create a fresh update cache.
Method 6: Check Available Disk Space
Large Windows updates require sufficient free storage.
Recommended Free Space
| Windows Version | Minimum Free Space |
| Windows 10 | 20 GB |
| Windows 11 | 25 GB |
| Feature Updates | 30 GB+ |
Delete temporary files if necessary.
Open Disk Cleanup
- Press Windows + R
- Type:
cleanmgr
- Select your system drive
- Remove unnecessary files
Method 7: Check Disk for Errors
Hard drive errors can interrupt updates.
Run:
chkdsk C: /f /r
You may be prompted to schedule the scan at the next restart.
This process repairs:
- Bad sectors
- File system errors
- Storage corruption
Method 8: Install Updates Manually
If Windows Update continues to fail, install the update directly.
Steps
- Open Windows Update History
- Note the KB number
- Visit Microsoft Update Catalog
- Search the KB number
- Download the correct version
- Install manually
This bypasses many Windows Update issues.
How to Prevent Error 0x80070057
Following good maintenance practices can reduce future update failures.
Best Practices
| Recommendation | Benefit |
| Keep 25 GB free space | Prevent installation failures |
| Update regularly | Avoid large cumulative update issues |
| Run SFC monthly | Detect corruption early |
| Use SSD storage | Faster updates |
| Avoid forced shutdowns | Prevent file corruption |
Frequently Asked Questions
Is Error 0x80070057 Dangerous?
No. It usually indicates a Windows Update problem and does not mean your hardware is failing.
Can I Ignore It?
Ignoring the error may leave your system without important security updates, which can expose your PC to vulnerabilities.
Will Resetting Windows Fix It?
Yes, but resetting Windows should only be used as a last resort after trying the methods above.


