Beschreibung
diese Kurzanleitung stellt Ihnen die Möglichkeit dar, den Windows Update Menchanismus eines Clients / Server zurück zu setzen.
Erstellen Sie eine Batch Datei (Version 0.3) mit dem unten aufgelisteten Inhalt:
rem rem Windows Update Cleanup Script rem Version 0.3 rem Last Change 17.12.2016 rem
net stop wuauserv regsvr32 /s wuapi.dll regsvr32 /s wups.dll regsvr32 /s wuaueng.dll regsvr32 /s wucltui.dll regsvr32 /s msxml3.dll
c: cd %windir%\SoftwareDistribution rd /s/q DataStore mkdir DataStore rd /s/q Download mkdir Download
net start wuauserv
rem Fixes problem with client machines not showing up on the server due to imaging method
reg delete HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate /v AccountDomainSid /f reg delete HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate /v PingID /f reg delete HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate /v SusClientId /f cls @echo Triggering detection after resetting WSUS client identity net stop "Automatic Updates" net start "Automatic Updates" wuauclt /resetauthorization /detectnow
|