使用bat文件在xp上安装Windows补丁

时间:2014-02-26 19:53:47

标签: batch-file install patch

我正在尝试安装多个补丁,这是一小部分代码,有259个补丁要安装,我已经为bat文件创建了。在把它拿到我们的ATM并尝试之前。这有用吗?

@echo off

D:\dotnetfx35.exe /passive /norestart
D:\IE8-WindowsXP-KB2183461-x86-ENU.exe /passive /norestart
D:\IE8-WindowsXP-KB2360131-x86-ENU.exe /passive /norestart
D:\IE8-WindowsXP-KB2416400-x86-ENU.exe /passive /norestart
D:\IE8-WindowsXP-KB2482017-x86-ENU.exe /passive /norestart
D:\IE8-WindowsXP-KB2497640-x86-ENU.exe /passive /norestart
D:\IE8-WindowsXP-KB2530548-x86-ENU.exe /passive /norestart
D:\IE8-WindowsXP-KB2544521-x86-ENU.exe /passive /norestart
D:\IE8-WindowsXP-KB2559049-x86-ENU.exe /passive /norestart
D:\IE8-WindowsXP-KB2586448-x86-ENU.exe /passive /norestart
qchain.exe

2 个答案:

答案 0 :(得分:0)

我会避免硬编码所有修补程序的名称,而是依赖于do循环,就像你在这里看到的那样:http://www.msfn.org/board/topic/152020-batch-script-for-windows-software-updates-installation/

答案 1 :(得分:0)

使用这种命令方式,使它们按顺序执行。

start "" /w "d:\IE8-..." /passive /norestart

我对你的开关没有评论,并假设你知道去那里意味着什么。