Question : WSUS Update not installing

Dear All,

We have WSUS 3.0 installed on Windows 2003 Server which we use to deploy Microsoft updates to Domain Controllers. The update is getting installed on all the DC except for 2 domain controllers. When I check the Patch status report it is showing Failed with error "Failed to Download". Kindly let me know how to troubleshoot the same.

Answer : WSUS Update not installing

First off Kudos for having the cajones for allowing WSUS to install patches on your DCs.

Secondly, copy the below into Notepad and save it as a .bat file and run it on the servers that are having a problem. It will strip out and delete everything related to WSUS and cause it to re authenticate with the WSUS server.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
REM Stop the Automatic Updates service
net stop wuauserv

REM Stop the Windows Management Instrumentation service
net stop winmgmt

REM Backup ReportingEvents.log.  Then, delete the contents of
REM  %systemroot%\SoftwareDistribution and
REM  %systemroot%\system32\WBEM\Repository
copy %systemroot%\softwaredistribution\reportingevents.log %homedrive%\
del /f /q %systemroot%\softwaredistribution\*.*
move %homedrive%\reportingevents.log %systemroot%\softwaredistribution

REM Delete SusClientID and AccountDomainSid keys from
REM  HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate
SET WU_KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate
reg delete %WU_KEY% /v SusClientID
reg delete %WU_KEY% /v AccountDomainSid
SET WU_KEY=

REM Start the Automatic Updates service
net start wuauserv

REM Start the Windows Management Instrumentation service
net start winmgmt

REM Force a group policy update
gpupdate /force

REM Roll the WU Client...
wuauclt /resetauthorization /detectnow
Random Solutions  
 
programming4us programming4us