PATCH MY PC DOCS

Knowledge Base

We’re here to help if needed

Update CAB Files Deleted from WSUSContent when Using Shared SUSDB

We’ve recently seen an increase in customer cases where published third-party software update (.CAB files) are automatically deleted from the WSUSContent folder. For this scenario, it occurs when customers are using a shared SUSDB among multiple WSUS servers.

Topics covered in this article:

Determine if You are Affected

The first step to determine if this could be your issue is to check if you have multiple WSUS servers (Software Update Points in ConfigMgr) using the same SUSDB. The most accurate way to check if multiple servers are using the same SUSDB is to connect to the SUSDB using SQL Server Management Studio.

Once connected, run the following SQL commands:

Use SUSDB
exec spGetFrontEndServers

The result of this query should list all WSUS front end servers using the same SUSDB.

spGetFrontEndServers Against SUSDB in SQL Management Studio

If there aren’t multiple servers listed in the ServerName column, this blog post will not be related to your issue.

If affected, you will see .CAB updates automatically be deleted right after the publishing is completed. In many cases, this will happen so fast you will not see the file appear unless you run Procmon to verify it was created. You will likely only see a new folder created in the WSUSContent directory that is empty, and the third-party update will fail to download to a deployment package with error 404.

CAB File for Third-Party Updates Auto-Delete from WSUSContent Folder

Why the Third-Party Update CAB Files are Auto-Deleting

If this is your scenario, we’ll dig into our findings after working with multiple customers having this same issue. The big thing to note when using a shared SUSDB with multiple WSUS servers is what WSUS server is acting as theĀ NLBMasterFrontEndServer. From a third-party update perspective, theĀ NLBMasterFrontEndServer is the WSUS server that performs hash validation after a third-party software update is published to the WSUSContent folder.

WSUS has a stored procedure (spUpdateServerHealthStatus) that will automatically change the WSUS server that holds theĀ NLBMasterFrontEndServerĀ role if the currentĀ NLBMasterFrontEndServer server has been unavailable for 5 minutes. This includes the server being offline, WSUS service stopped, or database connectivity issues.

To determine what WSUS front end server currently holds theĀ NLBMasterFrontEndServerĀ role, you can run the following query against the SUSDB.

select * from tbReference

In the example below, we can see theĀ NLBMasterFrontEndServer is set toĀ SITESYSTEM.CONTOSO.LOCAL. The publishing of updates is being performed from the WSUS serverĀ DEMO4.CONTOSO.LOCAL, because it is the top-level software update point within our Configuration Manager environment.

SUSDB Get NLBMasterFrontEndServer Server

The root cause for the actual .CAB files being deleted is because theĀ NLBMasterFrontEndServerĀ server doesn’t trust the WSUS signing certificate from the WSUS server that is performing the publishing of third-party updates.

Within the WSUS log file (C:\Program Files\Update Services\LogFiles\SoftwareDistribution.log) on theĀ NLBMasterFrontEndServer (SITESYSTEM.CONTOSO.LOCALĀ in our scenario), you will actually be able to see the CAB files being deleted.Ā 

CabUtilities.CheckCertificateSignature File cert verification failed for \\demo4\j$\WSUS\WsusContent\7E\88A3263D0FBFB63F57D93A0322958B051B18B97E.cab with 2148204809
ContentSyncAgent.WakeUpWorkerThreadProc Importing file 88A3263D0FBFB63F57D93A0322958B051B18B97E failed at file cert verification
ContentSyncAgent.WakeUpWorkerThreadProc Invalid file deleted: \\demo4\j$\WSUS\WsusContent\7E\88A3263D0FBFB63F57D93A0322958B051B18B97E.cab

The error codeĀ 2148204809 mentioned in the log above translates toĀ A certificate chain processed, but terminated in a root certificate which is not trusted by the trust provider.

How to Resolve CAB File Auto-Deletion for Third-Party Updates

The previous section gives insight into the root cause of the issue which is theĀ NLBMasterFrontEndServer doesn’t trust the WSUS Signing Certificate from the WSUS server performing the publishing. The fix is to export the WSUS Signing Certificate from the server performing the publishing and install it in the Trusted Root and Trusted Publishers certificate store on theĀ NLBMasterFrontEndServerĀ WSUS server.

If are using the Patch My PC Publisher, you can export the WSUS Signing Certificate from the general tab to aĀ (.CER file).

Export WSUS Signing Certificate

If you are not using the Publisher, you can export the WSUS Signing Certificate using the following steps:

  1. Open certlm.msc on the WSUS server performing the publishing
  2. Click the WSUS store
  3. Right-click the WSUS Signing Certificate > All Tasks > Export =
    1. certlm.msc Export WSUS Signing Certificate
  4. In the Export Private Key dialog, be sure to choose the option “No, do not export the private key

Copy the (.CER certificate file) from the WSUS server that it was exported from (DEMO4.CONTOSO.LOCAL in our case) to theĀ NLBMasterFrontEndServerĀ (SITESERVER.CONTOSO.LOCAL in our case). On theĀ NLBMasterFrontEndServerĀ WSUS server, open the (.CER certificate file). In the Certificate Path tab, you will likely see the certificate shows an error similar to the one below:

This CA Root certificate is not trusted because it is not in the Trusted Root Certification Authorities store.

On the General tab of the certificate, click Install Certificate… button

Install Certificate... from certlm.msc

In the Certificate Import WizardĀ choose Local Machine for the Store Location

Store Location as Local Machine

Click the radio button Place all certificates in the following storeĀ and browse toĀ Trusted Root Certification Authorities

Install Certificate to Trusted Root Certification Authorities certlm

Once installed toĀ Trusted Root Certification Authorities, repeat the certificate installation steps above, but choose the certificate storeĀ Trusted Publishers

Install Certificate to Trusted Publishers certlm

More InformationImportant: The WSUS Signing Certificate must be installed at both the Trusted Root Certification Authorities andĀ Trusted Publishers

Once the WSUS Signing Certificate is installed on theĀ NLBMasterFrontEndServerĀ WSUS server, any future published updates should not be automatically deleted.

WSUS Update CAB File in WSUSContent Folder

For any third-party update (.CAB files) that have already been deleted, you will need to republish those products as new updates using theĀ articleĀ When and How to Republish Patch My PC Third-Party Updates

More InformationNote: The WSUS Signing Certificate should be installed on all devices in your environment. You can review our guideĀ How to Deploy the WSUS Signing Certificate for Third-Party Software Updates for information on deploying the WSUS Signing Certificate site-wide.