Windows Update no Longer Works Since Installing SP1 Update

21,292

I've dealt with lots of servers and clients that had problems with Windows Update.

Make sure your running the newest version of Windows Update Agent (this has solved many problems for me). The newest version can be found here: https://support.microsoft.com/en-us/kb/949104 Find your OS, download the package and install it. Then reboot.

If that doesn't resolve it, try this:

  1. Stop the Windows Update service
  2. Delete contents of C:\Windows\SoftwareDistribution folder
  3. Start the Service
  4. Try Installing updates.

In some rare cases it's even harder to resolve the issue. I'd recommend you try running the following lines in Command Prompt as Admin (To open Command Prompt as Administrator, search for CMD > Right-click > Run as Administrator)

net stop cryptsvc
md %systemroot%\system32\catroot2.old
xcopy %systemroot%\system32\catroot2 %systemroot%\system32\catroot2.old /s
Share:
21,292

Related videos on Youtube

Admin
Author by

Admin

Updated on September 18, 2022

Comments

  • Admin
    Admin over 1 year

    Yesterday I realised that Windows Update wasn't working on my Windows 7 (32-bit) laptop.

    It sometimes found updates but then when I selected them and tried to download them it just hung on 0 kb and 0%.

    I uninstalled SP1 and Windows Update worked fine. Then , when reinstalled SP1 Windows Update stopped working - it just hangs while it says its looking for updates.

    I have used two tools to try to fix it - Windows Update Diagnostic and Microsoft FixIt 50202. Neither have worked...

  • Moab
    Moab almost 9 years
    This only corrects it if the Windows file system transaction log has become corrupted, which was a real problem in Vista, never have seen this issue in W7 or above.
  • fixer1234
    fixer1234 about 8 years
    When you find find that another thread answers a question, suggest it as a duplicate when you build a little more rep. I went ahead and did that. Thanks for pointing this out.
  • DavidPostill
    DavidPostill about 8 years
    Please don't add "thanks" as answers. Invest some time in the site and you will gain sufficient privileges to upvote answers you like, which is the Super User way of saying thank you.
  • Ramhound
    Ramhound almost 8 years
    link-only answers are not helpful. The information you linked to could easily be quoted and referenced.
  • Jan Doggen
    Jan Doggen over 7 years
    Why those last few lines? You have him copy a folder to a backup. It looks as if something needs to be done with the original folder now....
  • EntMobSec
    EntMobSec over 7 years
    It creates a new folder called catroot2.old, then copies the content from the original catroot2 folder to catroot2.old folder in order to completely empty the content in the folder, which will be recreated later in a healthy state.