home *** CD-ROM | disk | FTP | other *** search
/ Piper's Pit BBS/FTP: ibm 0210 - 0219 / ibm0210-0219 / ibm0213.tar / ibm0213 / GTA-SPAC.ZIP / INSTALL.BAT < prev    next >
Encoding:
DOS Batch File  |  1994-07-10  |  5.7 KB  |  138 lines

  1. echo off
  2. if %1*==* goto OK
  3. goto GAVEPATH
  4. :OK
  5. cls
  6. echo ────────────────────────────────────────────────────────────────────────
  7. echo            The SPACE ADVENTURE BONUS DISK new zoom images will be
  8. echo            copied to your hard disk drive in the directory called:
  9. echo        
  10. echo                                 C:\SPACE
  11. echo  
  12. echo                       Is this the correct directory?
  13. echo  
  14. echo                          Type     Y    if   YES
  15. echo                     or     
  16. echo                          Type     N    if   NO
  17. echo  
  18. echo ────────────────────────────────────────────────────────────────────────
  19. echo       
  20. echo 
  21. YESNO Y y
  22. if not errorlevel 1 goto DIFDIR
  23. if not exist c:\SPACE\KAV.EXE goto CANTFIND
  24. cls
  25. echo ─────────────────────────────────────────────────────────────────────────────
  26. echo Copying SPACE ADVENTURE BONUS DISK to C:\SPACE...
  27. echo 
  28. echo 
  29. echo                SPACE ADVENTURE BONUS ZOOM IMAGES
  30. echo 
  31. echo 
  32. echo                    SINAI PENINSULA FROM SPACE
  33. echo                            SATURN     
  34. echo                      SATURN'S MOOON TRITON
  35. echo                         SPACE COMMERCE
  36. echo                      SPACE SHUTTLE COCKPIT
  37. echo                           SPACEWALK
  38. echo                            VOYAGER
  39. echo 
  40. echo 
  41. echo Please Wait. Copying...
  42. copy *.img c:\SPACE\ZOOM 
  43. C:
  44. cd\SPACE
  45. :SUCCESS
  46. cls
  47. echo        ╔════════════════════════════════════════════════════════════╗
  48. echo        ║                                                            ║
  49. echo        ║       The SPACE ADVENTURE BONUS DISK files have been       ║
  50. echo        ║       successfully transfered to your hard disk.           ║
  51. echo        ║                                                            ║
  52. echo        ║   To start your updated SPACE ADVENTURE, type the word:    ║
  53. echo        ║                                                            ║
  54. echo        ║                     SPACE   [ENTER]                        ║
  55. echo        ║                                                            ║
  56. echo        ║                                                            ║
  57. echo        ╚════════════════════════════════════════════════════════════╝
  58. echo 
  59. goto DONE
  60. :DIFDIR
  61. cls
  62. echo        ╔════════════════════════════════════════════════════════════╗
  63. echo        ║                                                            ║
  64. echo        ║       To install the SPACE ADVENTURE BONUS DISK            ║
  65. echo        ║       files to a directory other than C:\SPACE, rerun      ║
  66. echo        ║       this install program along with the name of the      ║
  67. echo        ║       directory of where SPACE ADVENTURE resides.          ║
  68. echo        ║                                                            ║
  69. echo        ║       For example, if your SPACE ADVENTURE is              ║
  70. echo        ║       located in the directory D:\SPACE, type              ║
  71. echo        ║                                                            ║
  72. echo        ║                      INSTALL D:\SPACE                      ║
  73. echo        ║                                                            ║
  74. echo        ║                                                            ║
  75. echo        ╚════════════════════════════════════════════════════════════╝
  76. echo 
  77. goto DONE
  78. :CANTFIND
  79. cls
  80. echo        ╔════════════════════════════════════════════════════════════╗
  81. echo        ║                                                            ║
  82. echo        ║       The install program could not find the file          ║
  83. echo        ║       KAV.EXE in the directory specified.  Rerun this      ║
  84. echo        ║       install program along with the correct name of the   ║
  85. echo        ║       directory of where SPACE ADVENTURE resides.          ║
  86. echo        ║                                                            ║
  87. echo        ║       For example, if your SPACE ADVENTURE is              ║
  88. echo        ║       located in the directory D:\SPACE, type              ║
  89. echo        ║                                                            ║
  90. echo        ║                      INSTALL D:\SPACE                      ║
  91. echo        ║                                                            ║
  92. echo        ║                                                            ║
  93. echo        ╚════════════════════════════════════════════════════════════╝
  94. echo 
  95. goto DONE
  96. :GAVEPATH
  97. cls
  98. echo ────────────────────────────────────────────────────────────────────────
  99. echo            The SPACE ADVENTURE BONUS DISK zoom images will be
  100. echo            copied to your hard disk drive in the directory called:
  101. echo  
  102. echo                                    %1
  103. echo  
  104. echo                       Is this the correct directory?
  105. echo  
  106. echo                          Type     Y    if   YES
  107. echo                     or     
  108. echo                          Type     N    if   NO
  109. echo  
  110. echo ────────────────────────────────────────────────────────────────────────
  111. echo 
  112. echo 
  113. YESNO Y y
  114. if not errorlevel 1 goto DIFDIR
  115. if not exist %1\KAV.EXE goto CANTFIND
  116. cls
  117. echo ─────────────────────────────────────────────────────────────────────────────
  118. echo Transfering SPACE ADVENTURE BONUS DISK to C:\SPACE...
  119. echo 
  120. echo 
  121. echo                SPACE ADVENTURE BONUS ZOOM IMAGES
  122. echo 
  123. echo 
  124. echo                    SINAI PENINSULA FROM SPACE
  125. echo                            SATURN     
  126. echo                      SATURN'S MOOON TRITON
  127. echo                         SPACE COMMERCE
  128. echo                      SPACE SHUTTLE COCKPIT
  129. echo                           SPACEWALK
  130. echo                            VOYAGER
  131. echo 
  132. echo 
  133. echo Please Wait. Copying...
  134. copy *.img %1\ZOOM
  135. cd %1
  136. goto SUCCESS
  137. :DONE
  138.