如何批量装更新

来源:百度知道 编辑:UC知道 时间:2024/05/24 06:49:39
我平时积累了很多补丁,重装系统后怎样才能不用一个一个去点再安装?

自己做个bat自动安装文件 、首先把你下的所有补丁放在一个文件夹里、并且命名为(1) (2)。。。以此类推 然后在这个文件夹里你再建个文本文档 我给你代码是自动安装代码。。输入这个代码(你复制下就可以了)
@echo off
echo Windows XP SP2 后所有丁升级程序!
echo 正在升级中,请等...........
start /wait (1).exe /passive /norestart
echo 正在安装第 1个
start /wait (2).exe /passive /norestart
echo 正在安装第 2个
start /wait (3).exe /passive /norestart
echo 正在安装第 3个
start /wait (4).exe /passive /norestart
echo 正在安装第 4个
。。。。。
start /wait (127).exe /passive /norestart
echo 正在安装第 127个
echo 升级完毕,按任意键关闭此窗口!
@echo 欢迎共享和补充
pause
exit

然后保存 但是保存格式要。××。bat的。。

最后双击这个bat文件就可以了 你所有补丁就会自动安装了。。

打个包,或者下补丁全包。