发新话题
打印

[求助]如何编写一个cmd批处理文件在windows环境中运行安装sp2的所有补丁

[求助]如何编写一个cmd批处理文件在windows环境中运行安装sp2的所有补丁

各位高手,我打算制作一张工具光盘,其中一个功能是在windows环境中运行一个cmd批处理文件安装sp2的所有补丁,过程中又不想重启,不知道这样的cmd如何编写,主要因为是各补丁的运行参数不知道,请那位高人热心相助,谢谢!!!!
欢迎光临我的网络E盘
http://hqh0791.ys168.com/
http://2pan.mumayi.net/myspace.aspx?username=shaton

TOP

[求助]如何编写一个cmd批处理文件在windows环境中运行安装sp2的所有补丁

(假如补丁为d:\1.exe)在“运行”中写:
d:\1.exe /?
就可以得到补丁安装时可以添加的参数。包括你需要的 不重启 自动安装
1、使用工具。比如“笨笨熊安装界面”或杨海军的“软件安装管理器”。好处是界面好看,功能多多。(看软件说明)
2、批处理。
新建BAT文件,和补丁入在同一目录。用记事本编辑。最简单的内容为:
1.exe (你需要的参数)        (假如补丁名为1.exe)
2.exe (...参数)
。。。。。。

TOP

[求助]如何编写一个cmd批处理文件在windows环境中运行安装sp2的所有补丁

支持二楼的。

TOP

[求助]如何编写一个cmd批处理文件在windows环境中运行安装sp2的所有补丁

看看这2贴吧
http://www.ultraiso.com/cgi-bin/topic.cgi?forum=1&topic=3729
http://www.ultraiso.com/cgi-bin/topic.cgi?forum=1&topic=5933&show=40
[FLY][IMG]http://www.freeyy.com/bbs/uploadacc/Fid_59/59_10952.jpg[/IMG][IMG]http://www.freeyy.com/bbs/uploadacc/Fid_59/59_10953.jpg[/IMG][/FLY]

TOP

[求助]如何编写一个cmd批处理文件在windows环境中运行安装sp2的所有补丁

我的ftp里面有的
[img]http://pic.xabar.net/generator/email/?id=asp30&mail=163.com&tc=&rc=[/img]

TOP

[求助]如何编写一个cmd批处理文件在windows环境中运行安装sp2的所有补丁

@echo off
title 正在安装重要更新……
start /wait KB867282.exe /quiet /norestart /o /n /f
start /wait KB873333.exe /quiet /norestart /o /n /f
start /wait KB873339.exe /quiet /norestart /o /n /f
start /wait KB885250.exe /quiet /norestart /o /n /f
start /wait KB885523.exe /quiet /norestart /o /n /f
start /wait KB885626.exe /quiet /norestart /o /n /f
start /wait KB885835.exe /quiet /norestart /o /n /f
start /wait KB885836.exe /quiet /norestart /o /n /f
start /wait KB886185.exe /quiet /norestart /o /n /f
start /wait KB886677.exe /quiet /norestart /o /n /f
start /wait KB887742.exe /quiet /norestart /o /n /f
start /wait KB888113.exe /quiet /norestart /o /n /f
start /wait KB888302.exe /quiet /norestart /o /n /f
start /wait KB890047.exe /quiet /norestart /o /n /f
start /wait KB890175.exe /quiet /norestart /o /n /f
start /wait KB891781.exe /quiet /norestart /o /n /f
start /wait qchain.exe
exit

TOP

[求助]如何编写一个cmd批处理文件在windows环境中运行安装sp2的所有补丁

谢谢各位,我用了一个笨方法解决了,其实我的本意是用笨笨熊软件通用启动程序做一张装机工具盘,把winxp sp2的常用补丁作为其中一个安装选项而已。我的cmd如下
@echo
%cdrom% cd winxp sp2补丁/
start /wait dotnetfx.exe /q
start /wait KB886903.exe /q
start /wait KB890830.exe /q
start /wait KB834707.exe /p /n
start /wait KB867282.exe /p /n
start /wait KB873333.exe /p /n
start /wait KB873339.exe /p /n
start /wait KB885250.exe /p /n
start /wait KB885835.exe /p /n
start /wait KB885836.exe /p /n
start /wait KB886185.exe /p /n
start /wait KB887472.exe /p /n
start /wait KB888113.exe /p /n
start /wait KB888302.exe /p /n
start /wait KB890047.exe /p /n
start /wait KB890175.exe /p /n
start /wait KB891781.exe /p /n
start /wait KB886677.exe /p /n
start /wait KB887742.exe /p /n
欢迎光临我的网络E盘
http://hqh0791.ys168.com/
http://2pan.mumayi.net/myspace.aspx?username=shaton

TOP

发新话题