home *** CD-ROM | disk | FTP | other *** search
/ The SelectWare System Volume 2 #3 / The_SelectWare_System_Series_1_Volume_2_Number_3_Selectware.iso / sie10001 / __insth.bat next >
DOS Batch File  |  1979-12-31  |  507b  |  26 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:patch.101 >nul
  18.  
  19. cd ..
  20.  
  21. echo    To play The Colonel's Bequest Demo, type
  22. echo        cd \sierra
  23. echo    and then
  24. echo        cbquest
  25.  
  26.