home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / Dloads / Othergam / GLORY2-1.ZIP / __INSTH.BAT next >
DOS Batch File  |  1990-11-03  |  2KB  |  91 lines

  1. rem Install 720K disk version of Trial By Fire to a hard disk
  2. echo Copying game files...
  3. :Vol1
  4. exists %2:resource.001
  5. if    not errorlevel 1 goto GetVol1
  6. echo Please insert the disk labeled "Startup Disk / Disk 1" in drive %2.
  7. pause
  8. goto Vol1
  9. :GetVol1
  10. copy %2:*.* >nul
  11.  
  12. :Vol2
  13. exists %2:resource.002
  14. if    not errorlevel 1 goto GetVol2
  15. echo Please insert the disk labeled "Disk 2" in drive %2.
  16. pause
  17. goto Vol2
  18. :GetVol2
  19. copy %2:resource.002 >nul
  20.  
  21. :Vol3
  22. exists %2:resource.003
  23. if    not errorlevel 1 goto GetVol3
  24. echo Please insert the disk labeled "Disk 3" in drive %2.
  25. pause
  26. goto Vol3
  27. :GetVol3
  28. copy %2:resource.003 >nul
  29.  
  30. :Vol4
  31. exists %2:resource.004
  32. if    not errorlevel 1 goto GetVol4
  33. echo Please insert the disk labeled "Disk 4" in drive %2.
  34. pause
  35. goto Vol4
  36. :GetVol4
  37. copy %2:resource.004 >nul
  38.  
  39. :Vol5
  40. exists %2:resource.005
  41. if    not errorlevel 1 goto GetVol5
  42. echo Please insert the disk labeled "Disk 5" in drive %2.
  43. pause
  44. goto Vol5
  45. :GetVol5
  46. copy %2:resource.005 >nul
  47.  
  48. :Vol6
  49. exists %2:resource.006
  50. if    not errorlevel 1 goto GetVol6
  51. echo Please insert the disk labeled "Disk 6" in drive %2.
  52. pause
  53. goto Vol6
  54. :GetVol6
  55. copy %2:resource.006 >nul
  56. copy %2:script.* >nul
  57.  
  58. :Vol7
  59. exists %2:resource.007
  60. if    not errorlevel 1 goto GetVol7
  61. echo Please insert the disk labeled "Disk 7" in drive %2.
  62. pause
  63. goto Vol7
  64. :GetVol7
  65. copy %2:resource.007 >nul
  66.  
  67. :Vol8
  68. exists %2:resource.008
  69. if not errorlevel 1 goto GetVol8
  70. echo Please insert the disk labeled "Disk 8" in drive %2.
  71. pause
  72. goto Vol8
  73. :GetVol8
  74. copy %2:resource.008 >nul
  75.  
  76. :Vol9
  77. exists %2:resource.009
  78. if not errorlevel 1 goto GetVol9
  79. echo Please insert the disk labeled "Disk 9" in drive %2.
  80. pause
  81. goto Vol9
  82. :GetVol9
  83. copy %2:resource.009 >nul
  84. copy %2:script.* >nul
  85.  
  86. echo    To run Trial By Fire, type
  87. echo        cd \sierra
  88. echo    and then
  89. echo        trial
  90.  
  91.