Powered by |
Microsoft Windows NT4 SP6 - Unattended SetupI thought there is nothing special to install the Windows NT4 SP6 (SP6a) as unattended one. My goal was very simple: 1) install it quietly; 2) reboot the system. The unattended setup itself consists of two steps: unpack the files; run the update. The only info I've found about extracting files was a sp6i386.exe /x:destfolder /q We need one more thing to take care of: in such a notation the SP will create detached process aside from calling batch script. To make it wait for the SP to finish extracting files I use
Finally, here is a resulting batch file I used to install the SP6 for NT4. The syntax for @echo off echo INSTALLING SP6a MAIN MODULE echo Extracting files... start /wait sp6i386.exe /x:temp /q pushd temp cd update echo Starting the update... update.exe -u -f -n -o -z popd echo Deleting temp data... rd /s/q temp echo Rebooting... reboot -reboot The reboot unility can be used any of known. See my freeware section for one of them.
|