Sunday, February 17, 2019

Clearing the Synchronization history in the WSUS console


When you using WSUS for a long time and go into admin console to the Synchronization node - it loads very long time.
I’m talking about:


You can clean the WSUS synchronization history from database.

To do this, you’ll need to run SQL Server Management Studio and connect to SQL-server your WSUS server is using.

Note:
If you’re using the Internal Database for WSUS then you connect to \\.\pipe\MSSQL$MICROSOFT##SSEE\sql\query

In the Query windows enter and execute the following query:

USE SUSDB
GO
DELETE FROM tbEventInstance WHERE EventNamespaceID = '2' AND EVENTID IN ('381', '382', '384', '386', '387', '389')

This query will clear WSUS Synchronization history.
Now when you go to the WSUS admin console it should look something like this:


To clear synchronization history  from a spesific date and older use query like this:

USE SUSDB
GO
DELETE FROM tbEventInstance WHERE EventNamespaceID = '2' AND EVENTID IN ('381', '382', '384', '386', '387', '389') AND TimeAtServer < '2019-02-16'

After this query WSUS admin console synchronization history look like:



Of course every time you make changes to any database you should make a backup first.


4 comments:

  1. Thanks for posting this. I wish I had this info back on an install a few years ago. For reasons outside my control, NTP went to sh*t on my domain, long enough for WSUS to pull updates on September 1st, 2042. :{

    Clearing the logs would have been so much less painful than a full server restoral from backups lol

    ReplyDelete
  2. Anonymous21/1/22 14:51

    Thanks for this, just ran against a 2019 server using azure data studio and it worked great

    ReplyDelete
  3. Anonymous16/9/22 04:13

    thanks a lot! this works!!! i spent many days trying to fix it without any success until i found this, amazing work!

    ReplyDelete