home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 336.img / HQ2-1.ZIP / INSTGAME.BAT < prev    next >
DOS Batch File  |  1990-08-22  |  727b  |  34 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.  
  7. rem    Check to see that there is enough space for the installation.
  8. space %1: 4000kb
  9. if errorlevel 1 goto NoSpace
  10.  
  11. godir %1:\sierra\trial
  12. if errorlevel 1 goto CantCreate
  13. echo Copying drivers...
  14. copy %2:*.drv >nul
  15. copy %2:exists.com >nul
  16. copy %2:_hdtrial.bat ..\trial.bat >nul
  17. copy %2:__insth.bat >nul
  18. __insth %1 %2
  19.  
  20. :NoSpace
  21. echo "There is not enough space on %1 to install"
  22. echo "    Quest for Glory II: Trial By Fire!"
  23. echo " 4 megabytes of disk space are necessary."
  24. pause
  25. goto Exit
  26.  
  27. :CantCreate
  28. echo "Unable to create directory %1."
  29. pause
  30. goto Exit
  31.  
  32. :Exit
  33.  
  34.