home *** CD-ROM | disk | FTP | other *** search
/ Piper's Pit BBS/FTP: ibm 0020 - 0029 / ibm0020-0029 / ibm0028.tar / ibm0028 / HOYLES2.ZIP / HOYLEII1.ZIP / __INSTH.BAT next >
Encoding:
DOS Batch File  |  1990-06-14  |  749 b   |  37 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. copy %2:options.sol >nul
  19.  
  20. :Vol2
  21. exists %2:resource.002
  22. if    not errorlevel 1 goto GetVol2
  23. echo Please insert the disk labeled "Disk 2" in drive %2.
  24. pause
  25. goto Vol2
  26. :GetVol2
  27. copy %2:hoylesol.* >nul
  28. copy %2:resource.* >nul
  29. copy %2:options.sol >nul
  30.  
  31. :Exit
  32.  
  33. cd ..
  34.  
  35. echo To play - Hoyle Book Of Games Volume 2 Solitaire - type hoyle2     
  36.  
  37.