home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 314.img / JFLVINC.ZIP / INSTGAME.BAT < prev    next >
DOS Batch File  |  1990-10-19  |  889b  |  39 lines

  1. echo off
  2. rem     Parameters are
  3. rem         %1:    drive on which to install the program
  4. rem         %2:    drive from which installation is taking place
  5.  
  6. rem    Check to see that there is enough space for the installation.
  7. space %1: 1200kb
  8. if errorlevel 1 goto NoSpace
  9.  
  10. rem    Create the drivers subdirectory and copy the drivers.
  11. godir %1:\sierra\jones
  12. if errorlevel 1 goto CantCreate
  13.  
  14. rem    Copy over the necessary files.
  15. echo Copying drivers...
  16. copy %2:*.drv >nul
  17. copy %2:exists.com >nul
  18. copy %2:__insth.bat >nul
  19. copy %2:sierra.bat >nul
  20. copy %2:version >nul
  21.  
  22. copy %2:jones.bat %1:\sierra >nul
  23.  
  24. rem    Copy all the resources over.
  25. __insth %1 %2
  26.  
  27. :NoSpace
  28. echo "There is not enough space on %1 to install `Jones in the Fast Lane'"
  29. echo "Approximately 1200K bytes of disk space is required."
  30. pause
  31. goto Exit
  32.  
  33. :CantCreate
  34. echo "Unable to create directory %1."
  35. pause
  36. goto Exit
  37.  
  38. :Exit
  39.