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

G

Guest

Guest
Archived from groups: microsoft.public.win2000.setup (More info?)

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
 
G

Guest

Guest
Archived from groups: microsoft.public.win2000.setup (More info?)

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.