home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Jason Aller Floppy Collection
/
431.img
/
BAT-1.ZIP
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1990-11-29
|
572b
|
29 lines
echo off
cls
if "%1"=="" goto nodrive
if %0==a:install goto drivea
if %0==b:install goto driveb
if %0==A:INSTALL goto drivea
if %0==B:INSTALL goto driveb
goto batinst
:drivea
a:
goto batinst
:driveb
b:
:batinst
echo B.A.T. Hard Disk Installation VGA version
echo ********************************************
echo.
md %1\BATVGA
copy *.* %1\BATVGA\*.*
echo.
echo.
echo NOW RUN THE INSTALL PROGRAM CONTAINED ON DISK 2.
goto END
:nodrive
echo Please specify drive to install B.A.T. onto. (eg. INSTALL C:)
echo.
echo.
:END