home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Devil's Doorknob BBS Capture (1996-2003)
/
devilsdoorknobbbscapture1996-2003.iso
/
Dloads
/
Othergam
/
KQ1-1.ZIP
/
INSTGAME.BAT
< prev
next >
Wrap
DOS Batch File
|
1990-09-17
|
774b
|
39 lines
echo off
cls
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: 3000kb
if errorlevel 1 goto NoSpace
godir %1:\sierra\kq1
if errorlevel 1 goto CantCreate
echo Please wait, copying files...
copy %2:exists.com >nul
echo cd kq1 >\sierra\kq1.bat
echo sierra >>\sierra\kq1.bat
echo cd .. >>\sierra\kq1.bat
copy %2:__insth.bat >nul
copy %2:getdisk.bat >nul
__insth %1 %2
:NoSpace
echo "There is not enough space on %1 to install King's Quest I!"
echo "3 megabytes of disk space are necessary."
pause
goto Exit
:CantCreate
echo "Unable to create directory %1."
pause
goto Exit
:Exit