How Long Does WAM Take to Clean WSUS?

by | Last updated 2024.03.09 | Published on 2019.04.10 | Blog

On most new systems, WAM can clean WSUS in under 72 hours; however, older systems with slower processing power could take longer.

Older hardware—especially systems between 2010 and 2012—can slow down when it comes to removing obsolete updates. While many systems will clear this step in minutes or just a few hours, some systems require days. The benefit of WAM is that you can let the software run in the background, there’s no input needed by the user.

If you’re concerned about the amount of the time WAM is taking to clean WSUS, you can check the progress using SQL Server Management Studio and connecting to the Windows Internal Database (WID).

Once connected, open a new query window and paste in the following code:

USE SUSDB
EXEC spGetObsoleteUpdatesToCleanup

This will return the number of rows left to process. Make note of that number and re-run again in an hour. The second run should return fewer rows to be processed. Subtract the two numbers to find out how many records per hour WAM is processing. From this, you can gauge how long it’s going to take.

An alternative is to open an elevated PowerShell (Run as administrator) and run:

Invoke-SqlCmd -ServerInstance np:\\.\pipe\MICROSOFT##WID\tsql\query -Database SUSDB -Query 'CREATE TABLE #results (UpdatesToCleanUp INT); INSERT INTO #results(UpdatesToCleanUp) EXEC spGetObsoleteUpdatesToCleanup; SELECT Count(*) AS [UpdatesToCleanUp] FROM #results' -IncludeSqlUserErrors -Encrypt Optional

This will do the same thing, except give you only exactly what you’re looking for – the number of updates to clean up. Re-run this same query in an hour and subtract the second time from the first time to find out how many records per hour WAM is processing. From this you can gauge how long it’s going to take.

If you want to speed up the process, cancel the existing run, increase the Application Pool Memory, and then restart -FirstRun. You can also stop the WSUS Service to help increase speed.

To restart -FirstRun, open the WAM Shell (Windows Menu > Programs > AJ Tek > WAM Shell) and run:
.\Clean-WSUS.ps1 -FirstRun
To check what the current memory level is by running: *AS OF RELEASE 2021.07*
Get-ApplicationPoolMemory -Name WsusPool
If it is less than 4GB, set it to 4GB:
Set-ApplicationPoolMemory -Name WsusPool -NewMemoryValue 4096
If it is 4GB or more and less than 8GB, set it to 8GB:
Set-ApplicationPoolMemory -Name WsusPool -NewMemoryValue 8192
If it is 8GB or more and less than 12GB, set it to 12GB:
Set-ApplicationPoolMemory -Name WsusPool -NewMemoryValue 12288
If it is already 12GB or higher, set it to unlimited:
Set-ApplicationPoolMemory -Name WsusPool -NewMemoryValue 0
In most applications, WAM can clean WSUS in 2-72 hours; however, older and neglected systems can take days. It’s perfectly normal to have the software running for days. You don’t need to check on anything or stop the process. Just let WAM work in the background and wait for the WSUS Cleanup Results email.

WAM is available for online purchase. Your yearly subscription includes free support through the website and is payable by credit card or Bitcoin.

Purchase the preferred method of WSUS maintenance worldwide.

WSUS Automated Maintenance (WAM) © system was developed by AJ Tek and is used by system administrators worldwide—from Australia to Antarctica. With over 50,000 unique downloads, it’s the preferred method of WSUS maintenance worldwide.

Follow AJ Tek on Facebook and LinkedIn for
updates on new releases and products.

Latest Blogs

No Results Found

The page you requested could not be found. Try refining your search, or use the navigation above to locate the post.

Plan WSUS Maintenance

Plan WSUS Maintenance

How often do you perform WSUS maintenance? Is it a monthly task? Quarterly? Or maybe even yearly? You need to have a plan for WSUS maintenance. Microsoft recommends monthly maintenance. But ideally, you should be proactively maintaining your servers and database for...

Want Better Performance? Clean Up Your WSUS Database

Want Better Performance? Clean Up Your WSUS Database

If you’re running into performance issues with your WSUS server, your first step should be to investigate the WSUS database to see if it’s the cause of the errors. If you’re lax with maintenance, the database could be filled with unneeded and unnecessary updates,...

Remove Unnecessary Updates from WSUS Server

Remove Unnecessary Updates from WSUS Server

Removing unnecessary updates will free up a significant amount of space on servers. While WSUS knows when older updates become obsolete and are no longer needed, they remain on the server—taking up space—until *you* remove them.   You can manually remove unnecessary...