Skip to main content

Fix Windows Update Looking Forever For AntiSpam Updates

Posted August 2009 by Steve Sinchak

I experienced a strange error with Windows Update and Exchange 2007 AntiSpam updates on Windows Server 2008. When I enabled Exchange AntiSpam updates Windows Update would never stop looking for updates.  The host process for Windows Update, Svchost.exe, would run at 100% of one CPU core and never stop.  I had to kill the process in Task Manager. It was like there was an infinite loop condition somewhere in the code. When I disabled AntiSpam updates in Exchange Windows Update functioned properly again.

The root cause of the problem was Windows Update and Microsoft Update.  To fix issue I had to disable and re-enable antispam updates.  This can be done by opening the Exchange Management Shell and run:

Disable-AntiSpamUpdates

and then

Enable-AntiSpamUpdates -Identity -IPReputationUpdatesEnabled $true -UpdateMode Automatic -SpamSignatureUpdatesEnabled $True

Next, I had to reinstall the Windows Update and Microsoft Update components.  Open up a command prompt and run:

net stop wuauserv

cd %systemroot%

ren SoftwareDistribution SoftwareDistribution.old

net start wuauserv

Finally just manually run Windows Update and re-enroll in Microsoft Update again and everything should now work properly.

Related Posts


The Java Runtime Environment has become one of the most exploited components of any operating system. Even the US Department of Homeland Security warns users to disable java unless they have a really good reason to use it.  For most of us the days of Web sites requiring you to run Java applets has long passed.  However, there still are a good number of desktop applications written in Java so simply...

Read More

Port 3389 is the home of the remote desktop protocol that powers Remote Desktop Services on all modern versions of Windows.  If your system has Remote Desktop enabled, it is listening for connections on port 3389.  Since this port is both well known and can be used to attack accounts, it is low hanging fruit for script kiddies and bots looking for an easy target.

Read More

The default flower user picture is displayed for new accounts and on various logon screens throughout the OS.  Customizing this picture requires a simple file copy and doing so will allow you to personalize your PC or even display a corporate logo.

Read More

Microsoft included a batch rename feature in the latest version of Windows allowing you to select multiple files, right click on one and select rename. All of the selected files will be renamed with the name you provided and a number. This functionality works well for basic files but does not provide any flexibility in exactly how the files are numbered and also does not allow the file extension to...

Read More