home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 278.img / MIXED_1.ZIP / __INSTH.BAT next >
DOS Batch File  |  1990-05-24  |  671b  |  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:sierra.com >nul
  14. copy %2:sciv.exe >nul
  15. copy %2:install.exe >nul
  16. copy %2:resource.* >nul
  17. copy %2:version >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:resource.* >nul
  27.  
  28. cd ..
  29.  
  30. echo    To run Mixed Up Mother Goose, type 
  31. echo        cd \sierra
  32. echo    and then
  33. echo        mg
  34.