Introduction
Last week, you attempted to patch and update the protection on your Windows 11 machine. However, the Windows Update process failed, leaving you puzzled. DISM (Deployment Image Servicing and Management) and SFC (System File Checker) tools showed no issues. In this article, we will explore the potential causes and solutions for this problem.
Checking for Windows Update Troubleshooter
The first step to resolve the issue is to run the built-in Windows Update Troubleshooter. This tool will automatically diagnose and attempt to fix common problems related to Windows Update. To run it, follow these steps:
- Press
Win + Ito open Settings. - Click on "Windows Update" in the left pane.
- Click on "Troubleshoot" in the right pane.
- Follow the on-screen instructions to run the troubleshooter.
Repairing Corrupted Windows Update Components
If the Windows Update Troubleshooter fails to resolve the issue, it's possible that some components related to Windows Update are corrupted. In this case, you can try repairing them using the following methods:
Method 1: Using the Windows Update Reset
Windows key + I > Windows Update > Advanced options > "Reset all"
This method resets all Windows Update components and settings to their default values. It's a straightforward solution that often resolves most issues related to Windows Update.
Method 2: Manually Repairing Corrupted Components
If the Windows Update reset fails, you can try repairing the corrupted components manually. This process involves running several PowerShell commands:
net stop wuauserv
net stop cryptSvc
net stop bits
net stop msiserver
ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
ren C:\Windows\System32\catroot2 catroot2.old
net start wuauserv
net start cryptSvc
net start bits
net start msiserver
Updating Windows Manually
If the above methods fail, you can try updating Windows manually. This process involves downloading the latest update package from Microsoft's website and installing it manually:
Method 1: Using Media Creation Tool
https://www.microsoft.com/en-us/software-download/windows10
Download and run the Media Creation Tool. Choose the "Create installation media for another PC" option and select the language, architecture, and edition of Windows 11. Once the media is created, use it to create an installation USB.
Method 2: Using Update Catalog
https://www.catalog.update.microsoft.com
Download the latest update catalog for your specific version of Windows 11. Extract the contents of the downloaded file and copy the necessary update files to a folder. Run the update files using the Command Prompt with administrative privileges:
cd C:\path\to\update\files
dism /online /add-package /path/to/update/package.cab
In conclusion, if you're unable to patch and update the protection on your Windows 11 machine, DISM showing good and SFC showing no issues doesn't necessarily mean that there's no problem. You can try running the Windows Update Troubleshooter, repairing corrupted components, or updating Windows manually using the methods outlined above. If none of these methods work, consider seeking further assistance from Microsoft Support or your IT department.