home *** CD-ROM | disk | FTP | other *** search
/ The SelectWare System Volume 2 #3 / The_SelectWare_System_Series_1_Volume_2_Number_3_Selectware.iso / sie10003 / instgame.bat < prev    next >
DOS Batch File  |  1989-03-23  |  692b  |  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.  
  7. rem    Check to see that there is enough space for the installation.
  8. space %1: 2000kb
  9. if errorlevel 1 goto NoSpace
  10.  
  11. godir %1:\sierra\sq3demo
  12. if errorlevel 1 goto CantCreate
  13. echo Copying drivers...
  14. copy %2:*.drv >nul
  15. copy %2:exists.com >nul
  16. copy %2:sq3demo.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 Space Quest III Demo!"
  22. echo "2 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.