home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 298.img / HAWK1.ZIP / INSTGAME.BAT < prev    next >
DOS Batch File  |  1990-09-04  |  724b  |  32 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: 1000kb
  9. if errorlevel 1 goto NoSpace
  10.  
  11. godir %1:\sierra\thex2
  12. if errorlevel 1 goto CantCreate
  13. echo Copying files...
  14. copy %2:exists.com >nul
  15. copy %2:thex2.bat .. >nul
  16. copy %2:__insth.bat >nul
  17. __insth %1 %2 %3
  18.  
  19. :NoSpace
  20. echo "There is not enough space on %1 to install FIREHAWK!"
  21. echo "1 MegaBytes of disk space are necessary."
  22. pause
  23. goto Exit
  24.  
  25. :CantCreate
  26. echo "Unable to create directory %1."
  27. pause
  28. goto Exit
  29.  
  30. :Exit
  31.  
  32.