home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 63.img / HEROS1-1.ZIP / __INSTH.BAT < prev    next >
DOS Batch File  |  1989-08-04  |  1KB  |  53 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:sierra.com >nul
  14. copy %2:sciv.exe >nul
  15. copy %2:install.exe >nul
  16. copy %2:install.hlp >nul
  17. copy %2:resource.* >nul
  18.  
  19. :Vol2
  20. exists %2:resource.002
  21. if    not errorlevel 1 goto GetVol2
  22. echo Please insert the disk labeled "Disk 2" in drive %2.
  23. pause
  24. goto Vol2
  25. :GetVol2
  26. copy %2:*.* >nul
  27.  
  28. :Vol3
  29. exists %2:resource.003
  30. if    not errorlevel 1 goto GetVol3
  31. echo Please insert the disk labeled "Disk 3" in drive %2.
  32. pause
  33. goto Vol3
  34. :GetVol3
  35. copy %2:*.* >nul
  36.  
  37. :Vol4
  38. exists %2:resource.004
  39. if    not errorlevel 1 goto GetVol4
  40. echo Please insert the disk labeled "Disk 4" in drive %2.
  41. pause
  42. goto Vol4
  43. :GetVol4
  44. copy %2:*.* >nul
  45.  
  46. cd ..
  47.  
  48. echo    To play Hero's Quest I, type
  49. echo        cd \sierra
  50. echo    and then
  51. echo        HERO
  52.  
  53.