WSUS Sync Failures

Shayfer A. Mosness 11 Reputation points
2022-07-27T15:01:25.36+00:00

A dependency of the update was not found on the server and was not provided by the upstream server.225336-issue.png

Windows Server
Windows Server
A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.
12,130 questions
0 comments No comments
{count} votes

9 answers

Sort by: Most helpful
  1. Steven-USC 6 Reputation points
    2022-10-04T21:18:06.23+00:00

    It appears that Microsoft added a Product to WSUS and then pulled it back. In this case, its Windows Insider Dev Channel, but it could be any Product that could cause this problem.

    Our WSUS server shows Windows Insider Dev Channel, which does not show on a newly built WSUS server (as of today, anyway). We can see from the Get-WsusProduct cmdlet that it was added on 7/15/2022, which is around when our WSUS started failing to synchronize.

    PS C:\Program Files\Update Services> Get-WsusProduct -TitleIncludes 'Windows Insider Dev Channel' | Select-Object -ExpandProperty Product  
      
    Type                      : Product  
    ProhibitsSubcategories    : True  
    ProhibitsUpdates          : False  
    UpdateSource              : MicrosoftUpdate  
    UpdateServer              : Microsoft.UpdateServices.Internal.BaseApi.UpdateServer  
    Id                        : 373a021c-5871-4c35-ac0e-e85a3b788763  
    Title                     : Windows Insider Dev Channel  
    Description               : Windows Insider Dev Channel  
    ReleaseNotes              :  
    DefaultPropertiesLanguage :  
    DisplayOrder              : 2147483647  
    ArrivalDate               : 7/15/2022 5:00:07 PM  
    

    Microsoft's outsourced support has yet to even notice this.

    0 comments No comments

  2. TJ Hooker 1 Reputation point
    2022-10-12T07:02:35.21+00:00

    I have resetted my WSUS (DB & Content) a few Days ago an now have - what it looks like - exactly the here mentioned Problem.

    But after that mentioned reset, as Steven said, "Windows Insider Dev Channel" is no longer available under "Products", so I can´t
    Disable it to fix the error. When I disable the whole Windows-Category under Products, my Sync works again, but then, of course,
    I miss all Windows-Updates. But this, in my Opinion, shows, that my Problem must be related to one of the Products within the
    Windows-Category.

    My Guess is, that the "Windows Insider Dev Channel" is still there and does "only" not show Up in the GUI.
    But how can I then disable it?


  3. Susan Bradley 96 Reputation points MVP
    2022-10-20T18:09:00.87+00:00

    Opened up support case Your support request number is 2210200030002389 to see if we can get this fixed at the root cause.


  4. Steven-USC 6 Reputation points
    2023-01-10T15:26:42.163+00:00

    This method worked to remove the 'Windows Insider Dev Channel' product (aka. Category, aka. Update) from the WSUS database without having to rebuild the WSUS environment.

    Step 1, Decline the Update

    DECLARE @UpdateID uniqueidentifier = ( SELECT [CategoryId] FROM [SUSDB].[PUBLIC_VIEWS].[vCategory] WHERE [CategoryType] = 'Product' AND [DefaultTitle] = 'Windows Insider Dev Channel' )
    EXEC spDeclineUpdate @UpdateID
    

    Step 2, Delete the Update

    DECLARE @UpdateID uniqueidentifier = ( SELECT [CategoryId] FROM [SUSDB].[PUBLIC_VIEWS].[vCategory] WHERE [CategoryType] = 'Product' AND [DefaultTitle] = 'Windows Insider Dev Channel' )
    EXEC spDeleteUpdateByUpdateID @UpdateID
    

    After this is completed, the All Products checkbox under Products and Classifications can be selected (which enables all sub-products). Running a full synchronization was then successful.

    0 comments No comments