Runing hotfix and Service pack in a batch file ???

G

Guest

Dear all,

I have read from microsft that hotfixes can be apply to a target system by
chaining them in a batch file as follow:

@echo off
setlocal
set PATHTOFIXES=E:\HotFix

%PATHTOFIXES%\Windows2000-KBxxxxxx-x86-xxx.EXE /F /U
%PATHTOFIXES%\Windows2000-KBxxxxxx-x86-xxx.EXE /F /U

Can I add in that batch file the W2kSP4.EXE to be chain before hotfix as
follow:

@echo off
setlocal
set PATHTOFIXES=E:\HotFix
set SP4=E:\SP4

%SP4%\W2kSP4.EXE /N /U
%PATHTOFIXES%\Windows2000-KBxxxxxx-x86-xxx.EXE /F /U
%PATHTOFIXES%\Windows2000-KBxxxxxx-x86-xxx.EXE /F /U

Does this will be able to run all thos update chain in sequence ?

regards
serge
 
A

Abhijeet Nigam [MSFT]

Hi,
I dont think so that this is a good idea as Service PAck requires
restart and it deals with change in the catalogue

for moreinformation

kb 296861
kb 314902

This posting is provided "AS IS" with no warranties, and confers no rights.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top