I have three patches on a W2K server that window’s update keeps trying to
install. They are: KB911567, KB911562, & KB925486
In my windows update log, I see the following errors:
a. Agent WARNING: Failed to evaluate Installable rule, updateId =
{71E32960-67F7-4C7C-A903-5B3198BB2D3E}.100, error = 0x80070003.
b. Agent WARNING: Failed to evaluate Installed rule, updateId =
{B8897090-EF06-46E4-9661-B9815A25B04F}.102, error = 0x80004005
I've tried the following:
a. Create and ran the batch file that does the following:
CD /d C:\Windows\System32
regsvr32 MSXML3.dll
regsvr32 SOFTPUB.DLL
regsvr32 INITPKI.DLL
regsvr32 MSSIP32.DLL
net stop wuauserv
cd /d C:\Windows
del SoftwareDistribution
net start wuauserv
b. Renamed CatRoot2 and restarted the cartographical services
c. Ran SCF /SCANNOW
d. Manually installed KB911567 with the "/o" switch for overwriteoem.
e. Deleted KB911567 from the registery
(HKLM\Software\Microsoft\Updates\SP2 and reinstalled using windows update
f. regsvr32 qmgrprxy.dll
g. Uninstalled KB925486 and manually installed it using the “/o” switch.
h. Ran the following batch file that I found:
@echo on
net stop wuauserv /Y
net stop bits /Y
CD /D %SystemRoot%\System32
Rename Msxml3.dll Msxml3.old
Rename Wuaueng.dll Wuaueng.old
Rename Wuapi.dll Wuapi.old
Rename Atl.dll Atl.old
Rename Wucltui.dll Wucltui.old
Rename Wups.dll Wups.old
::The above files should be automatically replaced from
%SystemRoot%\System32\DLLCache
@ping -n 11 127.0.0.1>nul
regsvr32 /S Msxml3.dll
regsvr32 /S Wuaueng.dll
regsvr32 /S Wuapi.dll
regsvr32 /S Atl.dll
regsvr32 /S Wucltui.dll
regsvr32 /S Wups.dll
rd /s /Q %SystemRoot%\SoftwareDistribution
net start bits
@ping -n 7 127.0.0.1>nul
net start wuauserv
Anyone have any recommendations or solutions?
|