← Back to DatabaseHow to Fix Error 0x80096001
Topic: Windows 11 Update Errors | Status: Updated
What is this error?
Error 0x80096001 is a Windows Update error that indicates a problem with the digital signatures of the update packages, typically due to missing or corrupted files. This error can prevent Windows from successfully downloading and installing updates, potentially leading to security vulnerabilities on your system.
How to Fix It
- Run Windows Update Troubleshooter: Go to Settings > System > Troubleshoot > Other troubleshooters. Find and run the Windows Update Troubleshooter to automatically detect and fix issues.
- Check Date and Time Settings: Ensure your system date and time are set correctly. Go to Settings > Time & language > Date & time and toggle on "Set time automatically."
- Update Your Antivirus Software: Ensure that your antivirus software is up to date, as outdated definitions can sometimes interfere with Windows updates.
- Manually Reset Windows Update Components: Open Command Prompt as an administrator and run the following commands one by one to stop the services, delete the SoftwareDistribution and Catroot2 folders, and restart the services:
net stop wuauserv
net stop cryptSvc
net stop bits
net stop msiserver
del %windir%\SoftwareDistribution /f /s /q
del %windir%\System32\catroot2 /f /s /q
net start wuauserv
net start cryptSvc
net start bits
net start msiserver
- Run System File Checker: Open Command Prompt as an administrator and enter
sfc /scannow. This command scans for and attempts to repair corrupted system files.
- Convert Windows Update Settings to Default: Reset Windows Update components to their default settings by opening Command Prompt as an administrator and running the command:
DISM /Online /Cleanup-Image /RestoreHealth.
Disclaimer: This is an educational guide. We are not responsible for data loss. Always backup your system.