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 >
DOS Batch File  |  1990-10-21  |  776b  |  33 lines

  1. echo off
  2.  
  3. rem     Parameters are
  4. rem         %1:    drive on which to install the program
  5. rem         %2:    drive from which installation is taking place
  6. rem             %3:     e/l load ega or low res files to hard disk
  7. rem    Check to see that there is enough space for the installation.
  8. space %1: 1100kb
  9. if errorlevel 1 goto NoSpace
  10.  
  11. godir %1:\GAMEARTS\ZELIARD
  12. if errorlevel 1 goto CantCreate
  13. echo Copying files...
  14. copy %2:exists.com >nul
  15. copy %2:GAME.BAT \ZELIARD.BAT >nul
  16. copy %2:GAME.BAT ..\ZELIARD.BAT >nul
  17. copy %2:__insth.bat >nul
  18. __insth %1 %2 %3
  19.  
  20. :NoSpace
  21. echo "There is not enough space on %1 to install ZELIARD!"
  22. echo "1.1 MegaBytes of disk space are necessary."
  23. pause
  24. goto Exit
  25.  
  26. :CantCreate
  27. echo "Unable to create directory %1."
  28. pause
  29. goto Exit
  30.  
  31. :Exit
  32.  
  33.