home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 321.img / JFLINC1.ZIP / __INSTH.BAT next >
DOS Batch File  |  1990-10-16  |  625b  |  34 lines

  1. rem    Prompt for each disk of the game in succession and copy
  2. rem    everything over from it.
  3.  
  4. echo Copying game files...
  5.  
  6. :Vol1
  7. exists %2:resource.001
  8. if    not errorlevel 1 goto GetVol1
  9. echo Please insert the disk labeled "Disk 1" in drive %2.
  10. pause
  11. goto Vol1
  12. :GetVol1
  13. copy %2:sciv.exe >nul
  14. copy %2:install.exe >nul
  15. copy %2:install.hlp >nul
  16. copy %2:resource.* >nul
  17.  
  18. :Vol2
  19. exists %2:resource.002
  20. if    not errorlevel 1 goto GetVol2
  21. echo Please insert the disk labeled "Disk 2" in drive %2.
  22. pause
  23. goto Vol2
  24. :GetVol2
  25. copy %2:*.* >nul
  26.  
  27. :Exit
  28.  
  29. cd ..
  30.  
  31. echo To play - `Jones in the Fast Lane' - type jones
  32.  
  33.  
  34.