修复WINXP的windows update

最近发现很多客户的操作系统不能Update,检查了一下是系统的updaet坏了,下面提修复的方法:
1,在文件服务器上建立一个XPSP3Update共享文件夹,所有人都能只读访问,从XPSP3安装光盘里复制以下几个文件到这个目录;
image
2,用记事本以下代码保存为windows-sp3-updaet.cmd文件,注意Servername必成你共享服务器相应的名字或IP;
 
@echo off
cmd /c
xcopy /s /e /c /r /y /q  \\ServerName\xpsp3update  %windir%\inf
%windir%\System32\rundll32.exe setupapi,InstallHinfSection DefaultInstall 132 %windir%\inf\qmgr.inf
Reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\BITS\Parameters /v ServiceDll /t REG_EXPAND_SZ /d %windir%\System32\qmgr.dll
rd /q /s %windir%\inf\i386
echo "Windows Update 服务正在重新启动,请稍候…………"
net stop wuauserv & net start wuauserv & net stop bits & net start bits
echo "Windows Update服务已更新,请重新上网Update Windows,按任意键退出本程序!"
pause
exit
 
3,到客户端用管理员帐号运行windows-sp3-updaet.cmd文件即可修复windows updaet.

你可能感兴趣的:(windows,update,休闲,winxp)