home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Jason Aller Floppy Collection
/
343.img
/
KOSINC1.ZIP
/
INSTALLD.BAT
< prev
next >
Wrap
DOS Batch File
|
1990-10-25
|
457b
|
27 lines
echo off
cls
REM test for correct parameter
if %1 == 3 goto 3disk
if %1 == 5 goto 5disk
echo You must type "INSTALLD 3" or "INSTALLD 5"
goto End
REM set up for 3.50 720K installation and jump to that on hard disk
:3disk
copy 3install.bat d:\
d:
cd\
3install d
REM set up for 5.25 360K installation and jump to that on hard disk
:5disk
copy 5install.bat d:\
d:
cd\
5install d
:End
echo Installation halted, please try again