Hi,
The error code 0x800f0991 often relates to issues with updating system components. This could be because of corrupted files, missing dependencies, or conflicts with other software. You can try the following steps to resolve this issue:
- Use the Built-in Windows Update Troubleshooter
Windows includes a built-in troubleshooter that can automatically detect and fix common problems with Windows Update. You can access it through Settings > Update & Security > Troubleshoot > Additional troubleshooters.
- Reset Windows Update Components
Resetting Windows Update components involves stopping related services and renaming certain folders so they can be recreated by the system:
- Open Command Prompt as Administrator.
- Stop the following services:
wuauserv
,bits
,cryptsvc
, andmsiserver
. - Rename the SoftwareDistribution and catroot directories.
- Restart the services you stopped earlier.
- Run System File Checker (SFC) and Deployment Imaging Service and Management Tool (DISM)
These tools help repair corrupted system files:
- Open Command Prompt as Administrator and run
sfc /scannow
to scan for and attempt to repair corrupt system files. - Follow up with DISM commands to restore health of the system image:
DISM /Online /Cleanup-Image /CheckHealth
DISM /Online /Cleanup-Image /ScanHealth
DISM /Online /Cleanup-Image /RestoreHealth
- Manually Download and Install the Update
If automatic updates fail, consider downloading the update package manually from the Microsoft Update Catalog. Ensure you download the correct version matching your system architecture.
https://www.catalog.update.microsoft.com/Search.aspx?q=KB5053598
Best Regards,
Ian Xue
If the Answer is helpful, please click "Accept Answer" and upvote it.