home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 321.img / JFLINC1.ZIP / INSTGAME.BAT < prev    next >
DOS Batch File  |  1990-10-18  |  866b  |  38 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: 800kb
  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.  
  21. copy %2:jones.bat %1:\sierra >nul
  22.  
  23. rem    Copy all the resources over.
  24. __insth %1 %2
  25.  
  26. :NoSpace
  27. echo "There is not enough space on %1 to install `Jones in the Fast Lane'."
  28. echo "Approximately 800K bytes of disk space is required."
  29. pause
  30. goto Exit
  31.  
  32. :CantCreate
  33. echo "Unable to create directory %1."
  34. pause
  35. goto Exit
  36.  
  37. :Exit
  38.