home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 293.img / KQ1-1.ZIP / INSTGAME.BAT < prev    next >
DOS Batch File  |  1990-09-17  |  774b  |  39 lines

  1. echo off
  2. cls
  3.  
  4. rem     Parameters are
  5. rem         %1:    drive on which to install the program
  6. rem         %2:    drive from which installation is taking place
  7.  
  8. rem    Check to see that there is enough space for the installation.
  9. space %1: 3000kb
  10. if errorlevel 1 goto NoSpace
  11.  
  12. godir %1:\sierra\kq1
  13. if errorlevel 1 goto CantCreate
  14. echo Please wait, copying files...
  15. copy %2:exists.com >nul
  16.  
  17. echo cd kq1 >\sierra\kq1.bat
  18. echo sierra >>\sierra\kq1.bat
  19. echo cd ..  >>\sierra\kq1.bat
  20.  
  21. copy %2:__insth.bat >nul
  22. copy %2:getdisk.bat >nul
  23. __insth %1 %2
  24.  
  25. :NoSpace
  26. echo "There is not enough space on %1 to install King's Quest I!"
  27. echo "3 megabytes of disk space are necessary."
  28. pause
  29. goto Exit
  30.  
  31. :CantCreate
  32. echo "Unable to create directory %1."
  33. pause
  34. goto Exit
  35.  
  36. :Exit
  37.  
  38. 
  39.