Rafcio

Active Member
Joined
Oct 5, 2012
Messages
7
I'm not sure if somebody else had this problem before, but for me this keeps happening every couple of weeks. It happened for the third time recently.

Out of the blue on shutdown Windows says that it's installing updates with the typical counter of percent complete going up. This is weird for a couple of reasons. First, no new updates were available. Second, the updates are configured to be confirmed, so they cannot be applied automatically. I have confirmed in the update history that indeed no update was installed at that time.

So, on the next startup Windows finishes installing fictional updates again with the typical counter going up until it reaches 100% and then the message is displayed that Windows Update Cleanup is taking place (or something to that tune - I don't remember the exact message). This step takes considerable time, I'd say at least 15 minutes with heavy disk I/O. Then when I'm finally able to login the CPU spikes with TrustedInstaller hogging one CPU core. When TrustedInstaller finally is done with its thing (a long time, 2 hours or so) I get a pop up balloon saying that new updates are available. The problem is the "new" updates are quite old and I'm positive that they were installed before. Previously it was .NET framework fixpak or something like that, and this time they are some security updates, one of them even dating back to 2012. If I let the updates to be applied the same set of updates will be displayed again and again. There is no way of getting out of this vicious cycle.

Obviously, Windows Update stores keep getting corrupt, but my question is why Windows keeps doing this to itself?

The Windows application error log has lots of informational events 1001 WindowsWcpOtherFailure3 pointing to Windows::Rtl::SystemImplementation:: DirectRegistryProvider::SysOpenKey API call (I assume). There are more details in those events, but I don't think those details are very relevant here.

Is there a way to restore just the WU stores from backup? What I've been doing so far was to restore the whole partition from the latest image (taken monthly) and then restore all the user data from backups, but this is extremely tedious and time consuming process, and it seems to be only a temporary fix, as like I said this keeps happening every couple of weeks and there is no reason to believe that it won't happen again.

I'd appreciate all the suggestions as to why is this happening and how to fix the issue without resorting to complete partition restore and then restoring the user data.
 
Solution
It seems like you are experiencing a frustrating issue with Windows Update on your system, where it repeatedly tries to install the same updates, even though they have been installed before. This can be caused by Windows Update stores becoming corrupt, leading to a cycle of failed update installations and subsequent reinstallation attempts. Here are some steps you can take to address this problem without having to resort to complete partition restoration: 1. Check for Corrupt System Files: - Run the System File Checker tool to scan your system for corrupt files and repair them. You can do this by opening a Command Prompt with administrative privileges and running the command:
Code:
 sfc /scannow
2. Reset Windows Update...
It seems like you are experiencing a frustrating issue with Windows Update on your system, where it repeatedly tries to install the same updates, even though they have been installed before. This can be caused by Windows Update stores becoming corrupt, leading to a cycle of failed update installations and subsequent reinstallation attempts. Here are some steps you can take to address this problem without having to resort to complete partition restoration: 1. Check for Corrupt System Files: - Run the System File Checker tool to scan your system for corrupt files and repair them. You can do this by opening a Command Prompt with administrative privileges and running the command:
Code:
 sfc /scannow
2. Reset Windows Update Components: - Sometimes resetting the Windows Update components can resolve update-related issues. You can do this by following these steps: - Open a Command Prompt as an administrator. - Run the following commands one by one, pressing Enter after each:
Code:
 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
3. Use Windows Update Troubleshooter: - Windows has a built-in troubleshooter that can automatically detect and fix common Windows Update issues. You can access it by going to Settings > Update & Security > Troubleshoot > Windows Update. 4. Manually Install Updates: - Consider manually downloading and installing the problematic updates from the Microsoft Update Catalog. This can sometimes bypass the issues you are facing with Windows Update. 5. Restore Windows Update Stores: - You can restore the Windows Update stores from a backup if you have one available. To do this, you would need to identify the specific folders and registry entries related to Windows Update and restore them from your backup. 6. Check Event Viewer for Errors: - Review the Event Viewer for any specific error messages related to Windows Update or system failures. This may provide additional clues on what is causing the repeated update installations. By following these steps, you may be able to resolve the Windows Update issue on your system without the need for a complete partition restore. If the problem persists, it might be worth considering more advanced troubleshooting steps or seeking assistance from Microsoft Support.
 
Solution