home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Devil's Doorknob BBS Capture (1996-2003)
/
devilsdoorknobbbscapture1996-2003.iso
/
Dloads
/
Othergam
/
ZEL-1.ZIP
/
INSTGAME.BAT
< prev
next >
Wrap
DOS Batch File
|
1990-10-21
|
776b
|
33 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 %3: e/l load ega or low res files to hard disk
rem Check to see that there is enough space for the installation.
space %1: 1100kb
if errorlevel 1 goto NoSpace
godir %1:\GAMEARTS\ZELIARD
if errorlevel 1 goto CantCreate
echo Copying files...
copy %2:exists.com >nul
copy %2:GAME.BAT \ZELIARD.BAT >nul
copy %2:GAME.BAT ..\ZELIARD.BAT >nul
copy %2:__insth.bat >nul
__insth %1 %2 %3
:NoSpace
echo "There is not enough space on %1 to install ZELIARD!"
echo "1.1 MegaBytes of disk space are necessary."
pause
goto Exit
:CantCreate
echo "Unable to create directory %1."
pause
goto Exit
:Exit