How do I install a service pack during a unattended installation?
March 4, 1999
A. There are various options, however all of them requirefor the service pack to be extracted to a directory, using
NT4SP3_I /x
and you then enter the directory where you want to extract to.
You could extract to a directory under the $OEM$ installation directorywhich would then be copied locally during the installation and you could addthe line
".UPDATE.EXE -U -Z"
to CMDLINES.TXT. This will increase the time of the text portion of theinstallation as the contents have to be copied over the network.
With Service Pack 4 you could just add and not need to expand the servicepack first.
[Commands]
".sp4sp4i386.exe -z -u"
Simply create a folder called sp4 under $OEM$ and copy sp4i386.exe to it.
If using the above you should ensure you have the following inunattended.txt
[Unattended]
OemPreinstall=yes
An alternate method is to install from a network drive, this requires a bitmore work:
Create a directory on a network server and copy the extracted service packto this directory. Setup a share on this directory called SP
Create a batch file in the $OEM$ share of the installation area calledSERVPACK.CMD with the following:
net use z:\SP /persistent:no /user:guest < password.txt
z:update.exe -u -zYou need to create the password.txt file that contains the guest accountpassword (usually blank) therefore perform the following:
- type copy con password.txt
- press ENTER once
- press CTRL+Z to save the file
If the password is not blank enter the password then press ENTERCopy the password.txt file to the $OEM$ directory
Edit CMDLINES.TXT and add ".SERVPACK.CMD" to the end
About the Author
You May Also Like