home *** CD-ROM | disk | FTP | other *** search
/ Jason Aller Floppy Collection / 67.img / INDY-2.ZIP / INSTALL.BAT < prev   
DOS Batch File  |  1989-05-24  |  2KB  |  112 lines

  1. echo off
  2. if "%1" == "" goto nodrive
  3. mkdir %1\indy3
  4. echo --
  5. echo - 
  6. echo - Copying files for Indiana Jones and the Last Crusade.
  7. echo -
  8. echo --
  9. :disk1
  10. if exist disk1.id goto cpdisk1
  11. echo - Insert Disk 1 into the floppy drive, hit any key to continue.
  12. echo --
  13. pause > nul
  14. goto disk1
  15. :cpdisk1
  16. echo - Copying disk 1 to %1
  17. echo --
  18. copy *.* %1\indy3
  19. echo --
  20. :disk2
  21. if exist disk2.id goto cpdisk2
  22. echo - Insert Disk 2 into the floppy drive, hit any key to continue.
  23. echo --
  24. pause > nul
  25. goto disk2
  26. :cpdisk2
  27. echo - Copying disk 2 to %1                        
  28. echo --
  29. copy *.* %1\indy3
  30. echo --
  31. :disk3
  32. if exist disk3.id goto cpdisk3
  33. echo - Insert Disk 3 into the floppy drive, hit any key to continue.
  34. echo --
  35. pause > nul
  36. goto disk3
  37. :cpdisk3
  38. echo - Copying disk 3 to %1
  39. echo --
  40. copy *.* %1\indy3
  41. echo --
  42. :disk4
  43. if exist disk4.id goto cpdisk4
  44. echo - Insert Disk 4 into the floppy drive, hit any key to continue.
  45. echo --
  46. pause > nul
  47. goto disk4
  48. :cpdisk4
  49. echo - Copying disk 4 to %1
  50. echo --
  51. copy *.* %1\indy3
  52. echo --
  53. :disk5
  54. if exist disk5.id goto cpdisk5
  55. echo - Insert Disk 5 into the floppy drive, hit any key to continue.
  56. echo --
  57. pause > nul
  58. goto disk5
  59. :cpdisk5
  60. echo - Copying disk 5 to %1
  61. echo --
  62. copy *.* %1\indy3
  63. echo --
  64. :disk6
  65. if exist disk6.id goto cpdisk6
  66. echo - Insert Disk 6 into the floppy drive, hit any key to continue.
  67. echo --
  68. pause > nul
  69. goto disk6
  70. :cpdisk6
  71. echo - Copying disk 6 to %1
  72. echo --
  73. copy *.* %1\indy3
  74. cls
  75. echo --
  76. echo -
  77. echo - Done installing Indiana Jones on %1\INDY3
  78. echo -
  79. echo - To run, type    CD \INDY3
  80. echo - then type       INDY3
  81. echo -
  82. echo - You can also start INDY3 up with several options including
  83. echo -
  84. echo - CGA      - Use CGA graphics.
  85. echo - EGA      - Use EGA graphics.
  86. echo - MCGA     - Use MCGA graphics.
  87. echo - TANDY    - Use TANDY graphics.
  88. echo - ADLIB    - Use Adlib board for sound and music.
  89. echo - INTERNAL - Use the Internal PC speaker for sound and music.
  90. echo - 2DISKS   - If you have two drives and are playing off
  91. echo -            of floppys.
  92. echo -
  93. echo - Example:   INDY3 EGA ADLIB 2DISKS
  94. echo -
  95. echo --
  96. %1
  97. cd \indy3
  98. goto end
  99.  
  100. :nodrive
  101. echo --
  102. echo -
  103. echo - You must specify hard drive to install files onto.
  104. echo -
  105. echo - install c:
  106. echo -
  107. echo --
  108. goto end
  109.  
  110. :end
  111.  
  112.