home *** CD-ROM | disk | FTP | other *** search
- echo OFF
-
- rem This Batch File (INSTALL.BAT) is used with SpeedStor II ver 1.0
- rem Copyright(C) 1986 Hexis Design. All rights reserved.
- rem Last Update: July 21,1986
- rem
-
- :START
- A:
- IF NOT EXIST HardPrep.exe GOTO Musthav
- IF NOT EXIST PartEd.exe GOTO Musthav
- IF NOT EXIST InitPrep.mac GOTO Musthav
- IF NOT EXIST InitPart.mac GOTO Musthav
- GOTO DoPrep
-
- :Musthav
- echo,.
- echo,.
- echo,. In order to use this INSTALL program, you must have the
- echo,. original SpeedStor diskette in drive A:
- echo,.
- echo,. Please correct this and press any key when ready to continue
- echo,. or you can press Ctrl-C to abort this batch file.
- echo,.
- PAUSE
- GOTO Start
-
- :DoPrep
- HardPrep InitPrep.mac %1 %2 %3
- IF NOT ERRORLEVEL 1 GOTO DoParted
- echo,.
- echo,.
- echo,. HardPrep PROCESS ABORTED !
- echo,. Please correct, then re-run this installation procedure
- echo,.
- GOTO end
-
- :DoParted
- PartEd InitPart.mac %1 %2 %3
- IF NOT ERRORLEVEL 1 GOTO LastMsg
- echo,.
- echo,.
- echo,. PartEd PROCESS ABORTED !
- echo,. If you wish, you can re-run PartEd using it's macro by typing:
- echo,.
- echo,. PARTED INITPART.MAC [drive2] [dosext]
- echo,.
- echo,. where DRIVE2 and DOSEXT are optional parameters. (do not
- echo,. type the brackets). See user manual for definitions of
- echo,. these options.
- echo,.
- GOTO end
-
- :LastMsg
- CLS
- echo,.
- echo,.
- IF *%1 == *DRIVE2 GOTO Drv2msg
- IF *%1 == *drive2 GOTO Drv2msg
- IF *%1 == *Drive2 GOTO Drv2msg
- IF *%2 == *DRIVE2 GOTO Drv2msg
- IF *%2 == *drive2 GOTO Drv2msg
- IF *%2 == *Drive2 GOTO Drv2msg
- IF *%3 == *DRIVE2 GOTO Drv2msg
- IF *%3 == *drive2 GOTO Drv2msg
- IF *%3 == *Drive2 GOTO Drv2msg
- :Drv1msg
- echo,. Drive ONE is now initialized. If you need to install
- echo,. a second drive, use this installation procedure with
- echo,. the DRIVE2 option (see user manual for specifics).
- echo,.
- GOTO BootMsg
- :Drv2msg
- echo,. Drive TWO is now initialized.
- echo,.
- :BootMsg
- echo,.
- echo,. If you are ready to copy DOS onto your Bootable partition
- echo,. follow the next few steps:
- echo,.
- echo,. 1) Place DOS disk into drive A:
- echo,. 2) Re-boot the system by pressing the Ctrl-Alt-Del keys
- echo,. When viewing the "A>" prompt, Type:
- echo,. 3) SYS C:
- echo,. 4) COPY COMMAND.COM C:
- echo,. 5) Place SpeedStor diskette into Drive A: and type:
- echo,. ADDEVICE
- echo,.
- echo,. You now have a system that can be booted from the hard disk!!!!!
- echo,.
-
- :end