M
mattverve
I'm working on a project in school. I have to perform an unattended
XP installation on an unpartitioned hard drive. My choices are
limited because 1) no 3rd party tools are allowed, 2) WinPE is not
allowed, and 3)we must use winnt.exe and NOT winnt32.exe.
4)installation cd cannot be bootable.
I've modified the autoexec.bat of a win98se boot disk, so that it
creates the partition, reboots, formats and starts the installation:
IF EXIST a:\file2.txt goto GUI
IF EXIST a:\file1.txt GOTO DUN
IF EXIST a:\file.txt GOTO FRMT
:FDSK
FDISK 1 /pri:2048
REM>A:\file.txt
CALL reboot.com
:FRMT
FORMAT c: /s/autotest
REM>A:\file1.txt
UN
smartdrv.exe
REM>a:\file2.txt
CALL e:\i386\winnt.exe /u:winnt.sif /s:E:\i386
:GUI
Yeah, the GUI part is empty, because I'm stumped.
The installation proceeds, copies the files to the hard drive, then
reboots to get ready to start the GUI phase. This is where the
problem begins, because I'm not allowed to eject the floppy. If I
eject the floppy, everything else is perfect and automated.
Boot order is CD, Hard Drive, Floppy.
(CD is not bootable, again, by rules of the assignment)
Obviously there's nothing on the hard drive that wants to resume the
install, so I'm stuck back at the floppy.
Is there anything i can put in the :GUI section to get this corrected?
Any ideas of what i can do to get the setup to continue? I realize
this is 16-bit mode, and from everything I've researched, it doesn't
seem possible, but my instructor insists it is. I'm guessing some
scripting is involved, but I'm first quarter and at a loss. I'm not
looking for an answer, just a hint or two...maybe even three.
Thanks, Matt.
XP installation on an unpartitioned hard drive. My choices are
limited because 1) no 3rd party tools are allowed, 2) WinPE is not
allowed, and 3)we must use winnt.exe and NOT winnt32.exe.
4)installation cd cannot be bootable.
I've modified the autoexec.bat of a win98se boot disk, so that it
creates the partition, reboots, formats and starts the installation:
IF EXIST a:\file2.txt goto GUI
IF EXIST a:\file1.txt GOTO DUN
IF EXIST a:\file.txt GOTO FRMT
:FDSK
FDISK 1 /pri:2048
REM>A:\file.txt
CALL reboot.com
:FRMT
FORMAT c: /s/autotest
REM>A:\file1.txt

smartdrv.exe
REM>a:\file2.txt
CALL e:\i386\winnt.exe /u:winnt.sif /s:E:\i386
:GUI
Yeah, the GUI part is empty, because I'm stumped.
The installation proceeds, copies the files to the hard drive, then
reboots to get ready to start the GUI phase. This is where the
problem begins, because I'm not allowed to eject the floppy. If I
eject the floppy, everything else is perfect and automated.
Boot order is CD, Hard Drive, Floppy.
(CD is not bootable, again, by rules of the assignment)
Obviously there's nothing on the hard drive that wants to resume the
install, so I'm stuck back at the floppy.
Is there anything i can put in the :GUI section to get this corrected?
Any ideas of what i can do to get the setup to continue? I realize
this is 16-bit mode, and from everything I've researched, it doesn't
seem possible, but my instructor insists it is. I'm guessing some
scripting is involved, but I'm first quarter and at a loss. I'm not
looking for an answer, just a hint or two...maybe even three.
Thanks, Matt.