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.4) mit dem unten aufgelisteten Inhalt:
rem rem Windows Update Cleanup Script rem Version 0.4 rem Last Change 15.11.2016 rem rem Stop Bits and WU Service net stop wuauserv>> C:\temp\WU_CleanupScript_Log.txt net stop bits>> C:\temp\WU_CleanupScript_Log.txt rem Stop Cryptsvc, rename catroot, Start Cryptsvc net stop cryptsvc>> C:\temp\WU_CleanupScript_Log.txt ren %systemroot%\System32\Catroot2 oldcatroot2>> C:\temp\WU_CleanupScript_Log.txt net start cryptsvc>> C:\temp\WU_CleanupScript_Log.txt rem Rename Local WU Directory ren %systemroot%\SoftwareDistribution SoftwareDistribution.old>> C:\temp\WU_CleanupScript_Log.txt rem Delete SusID ren REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v SusClientId /f>> C:\temp\WU_CleanupScript_Log.txt rem reRegister Service Files rem Info kb971058 regsvr32.exe atl.dll>> C:\temp\WU_CleanupScript_Log.txt regsvr32.exe urlmon.dll>> C:\temp\WU_CleanupScript_Log.txt regsvr32.exe jscript.dll>> C:\temp\WU_CleanupScript_Log.txt regsvr32.exe vbscript.dll>> C:\temp\WU_CleanupScript_Log.txt regsvr32.exe scrrun.dll>> C:\temp\WU_CleanupScript_Log.txt regsvr32.exe msxml3.dll>> C:\temp\WU_CleanupScript_Log.txt regsvr32.exe msxml6.dll>> C:\temp\WU_CleanupScript_Log.txt regsvr32.exe actxprxy.dll>> C:\temp\WU_CleanupScript_Log.txt regsvr32.exe softpub.dll>> C:\temp\WU_CleanupScript_Log.txt regsvr32.exe wintrust.dll>> C:\temp\WU_CleanupScript_Log.txt regsvr32.exe dssenh.dll>> C:\temp\WU_CleanupScript_Log.txt regsvr32.exe rsaenh.dll>> C:\temp\WU_CleanupScript_Log.txt regsvr32.exe cryptdlg.dll>> C:\temp\WU_CleanupScript_Log.txt regsvr32.exe oleaut32.dll>> C:\temp\WU_CleanupScript_Log.txt regsvr32.exe ole32.dll>> C:\temp\WU_CleanupScript_Log.txt regsvr32.exe shell32.dll>> C:\temp\WU_CleanupScript_Log.txt regsvr32.exe wuapi.dll>> C:\temp\WU_CleanupScript_Log.txt regsvr32.exe wuaueng.dll>> C:\temp\WU_CleanupScript_Log.txt regsvr32.exe wups.dll>> C:\temp\WU_CleanupScript_Log.txt regsvr32.exe wups2.dll>> C:\temp\WU_CleanupScript_Log.txt regsvr32.exe qmgrprxy.dll>> C:\temp\WU_CleanupScript_Log.txt regsvr32.exe wucltux.dll>> C:\temp\WU_CleanupScript_Log.txt regsvr32.exe wuwebv.dll>> C:\temp\WU_CleanupScript_Log.txt rem start Bits and WU Service net start bits>> C:\temp\WU_CleanupScript_Log.txt net start wuauserv>> C:\temp\WU_CleanupScript_Log.txt net start Eventlog>> C:\temp\WU_CleanupScript_Log.txt
Quelle: https://support.microsoft.com/en-us/kb/971058
Alternativ: https://support.microsoft.com/de-de/kb/971058