Quantcast
Channel: Wsus Package Publisher
Viewing all articles
Browse latest Browse all 3825

New Post: Anzeigen der Updates in der WSUS-Konsole unter Windows Server 2016

$
0
0
So, getestet. Die Updates werden trotz Fehlermeldung in die SUSDB gebracht. Ich hab mir dieses SQL Server Management Studio installiert: Microsoft SQL Server 2014 - 12.0.2000.8 (X64) Feb 20 2014 20:04:26 Copyright (c) Microsoft Corporation Windows Internal Database (64-bit) on Windows NT 6.3 <X64> (Build 14393: ) (Hypervisor) Verbindung via np:\.\pipe\Microsoft##WID\tsql\query hergestellt. In der Tabelle tbUpdate findest Du die Datensätze mit folgender Abfrage:
SELECT  [LocalUpdateID]
      ,[UpdateID]
      ,[UpdateTypeID]
      ,[IsClientSelfUpdate]
      ,[PublisherID]
      ,[IsPublic]
      ,[IsHidden]
      ,[DetectoidType]
      ,[LegacyName]
      ,[LastUndeclinedTime]
      ,[IsLocallyPublished]
      ,[ImportedTime]
  FROM [SUSDB].[dbo].[tbUpdate]
  WHERE IsLocallyPublished = 1
Mit diesem Update Query
USE [SUSDB]
GO
UPDATE [dbo].[tbUpdate]
   SET 
      [IsLocallyPublished] = 0
 WHERE [IsLocallyPublished] = 1
GO
werden die Updates vom WPP auch in der WSUS-Konsole sichtbar. Probier es aus, funktioniert. Zumindest bei mir soeben.

Viewing all articles
Browse latest Browse all 3825

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>