Solutions to Fix Windows 10/11 Update Error Code 0x80070070
Solutions to Fix Windows 10/11 Update Error Code 0x80070070
Blog Article
Error code 0x80070070 is a Windows 10/11 update error that typically indicates that there is not enough disk space available on the computer to complete a certain task. When this Windows 10 Error Code 0x80070070 occurs, you may see an error message that reads, “Not enough disk space to create the volume shadow copy on the storage location. Make sure that, for all volumes to be backed up, the minimal required disk space for shadow creation is available.”

Solution 1: Free Up Disk Space
- Delete unnecessary files and programs to free up space on your hard drive.
- Use the Windows Disk Cleanup utility to remove temporary files and system cache.
- Consider transferring large files to an external storage device.
Solution 2: Check System Requirements
Ensure your computer meets the system requirements for the software or update:
- Verify the required disk space for the update or software installation.

- Check if your hardware meets the necessary CPU and RAM specifications.
Solution 3: Run a Disk Check
- Open the Command Prompt as an administrator.
- Type the command
chkdsk /f
and press Enter to check for errors. - Follow the prompts to schedule a scan during the next system restart if necessary.
Solution 4: Disable System Restore
- Search for “System Protection” in the Windows search bar.
- Select your system drive and click “Configure.”
- Choose “Disable system protection” and click “Apply.”
Note: Re-enable System Restore after resolving the issue.
Solution 5: Use Windows Troubleshoot
- Go to the Start menu and click on “Settings.”
- Navigate to “System” > “Troubleshoot” > “Other Troubleshooters.”
- Locate “Windows Update” and click “Run.”
- Follow the on-screen instructions to complete the troubleshooting process.
Solution 6: Perform a System File Check
- Open the Command Prompt as an administrator.
- Type
sfc /scannow
and press Enter to scan for corrupted system files. - Wait for the scan to complete and follow any recommended actions.
Solution 7: Perform a DISM Scan
- Open the Command Prompt as an administrator.
- Run the following commands one at a time and press Enter after each:
DISM /Online /Cleanup-image /Scanhealth
DISM /Online /Cleanup-image /Restorehealth
- Restart your computer after the scan completes.
Solution 8: Reset Windows Update Components
- Open the Command Prompt as an administrator.
- Stop the Windows Update services by running the following commands:
net stop wuauserv
net stop cryptSvc
net stop bits
net stop msiserver
- Restart the services using these commands:
net start wuauserv
net start cryptSvc
net start bits
net start msiserver