home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Jason Aller Floppy Collection
/
314.img
/
JFLVINC.ZIP
/
INSTGAME.BAT
< prev
next >
Wrap
DOS Batch File
|
1990-10-19
|
889b
|
39 lines
echo off
rem Parameters are
rem %1: drive on which to install the program
rem %2: drive from which installation is taking place
rem Check to see that there is enough space for the installation.
space %1: 1200kb
if errorlevel 1 goto NoSpace
rem Create the drivers subdirectory and copy the drivers.
godir %1:\sierra\jones
if errorlevel 1 goto CantCreate
rem Copy over the necessary files.
echo Copying drivers...
copy %2:*.drv >nul
copy %2:exists.com >nul
copy %2:__insth.bat >nul
copy %2:sierra.bat >nul
copy %2:version >nul
copy %2:jones.bat %1:\sierra >nul
rem Copy all the resources over.
__insth %1 %2
:NoSpace
echo "There is not enough space on %1 to install `Jones in the Fast Lane'"
echo "Approximately 1200K bytes of disk space is required."
pause
goto Exit
:CantCreate
echo "Unable to create directory %1."
pause
goto Exit
:Exit