Remember to maintain security and privacy. Do not share sensitive information. Procedimento.com.br may make mistakes. Verify important information. Termo de Responsabilidade
Windows Update Error 0x80073712 is a common issue that occurs when a file needed by Windows Update is either missing or corrupted. This error can prevent your system from installing updates, which may lead to security vulnerabilities and performance issues. In this article, we will explore several methods to resolve this error using built-in Windows tools and commands.
Examples:
Run the Windows Update Troubleshooter:
The Windows Update Troubleshooter is a built-in tool that can automatically detect and fix common update problems.
Use the System File Checker (SFC) Tool:
The SFC tool scans and repairs corrupted system files.
cmd
in the search bar, right-clicking on Command Prompt, and selecting Run as administrator.sfc /scannow
Use the Deployment Imaging Service and Management Tool (DISM):
DISM can be used to repair the Windows image and resolve component store corruption.
DISM /Online /Cleanup-Image /RestoreHealth
Manually Reset Windows Update Components:
If the above methods do not work, you can manually reset Windows Update components.
net stop bits
net stop wuauserv
net stop appidsvc
net stop cryptsvc
SoftwareDistribution
and Catroot2
folders by typing the following commands:
ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
ren C:\Windows\System32\catroot2 Catroot2.old
net start bits
net start wuauserv
net start appidsvc
net start cryptsvc
Check for Disk Errors:
Sometimes, disk errors can cause update issues. Use the CHKDSK tool to check for and fix disk errors.
chkdsk /f /r
By following these steps, you should be able to resolve the Windows Update Error 0x80073712 and ensure that your system can install updates properly.