home *** CD-ROM | disk | FTP | other *** search
/ Unprotect 6 / Unprotect-6.0.iso / update / replay46 / install.bat < prev    next >
Encoding:
DOS Batch File  |  1995-05-09  |  8.0 KB  |  204 lines

  1. @ECHO OFF
  2. CLS
  3. ECHO  █████▒  ███████▒ ██████▒ █████▒      ██▒   █▒ █▒ █▒    ██████▒
  4. ECHO  ██▒  █▒  ██▒   █▒ ██▒  █▒██▒          ██▒  █▒ █▒ █▒    █▒
  5. ECHO  ███████▒  ██████▒  █████▒ ██▒          ██▒ █▒ ██████▒  ██████▒
  6. ECHO  ██▒    █▒  ██▒  █▒  █▒     ██▒          ████▒    █▒    █▒   █▒
  7. ECHO  ██▒     █▒  ██▒  █▒  █▒     █████▒       ███▒    █▒ █▒ ██████▒
  8. ECHO  
  9. ECHO ┌─────────────────────────────────────────────────────────────────────────────┐
  10. ECHO │ INSTALL.BAT Action Replay hard disk installation utility v4.x               │
  11. ECHO │ (c) 1994 Datel Electronics Ltd.                                             │
  12. ECHO │ Note: People upgrading - Once installed, use the "upgrade the flash" option │
  13. ECHO │       in the Action Replay SETUP.EXE program to re-program your cards flash │
  14. ECHO │       ROM to the new version.                                               │
  15. ECHO │                                                                             │
  16. ECHO │ Read the file UPDATE.TXT for information on the latest changes and fixes.   │
  17. ECHO ├─────────────────────────────────────────────────────────────────────────────┤
  18.  
  19. IF "%1"==""   GOTO DRIVESERROR
  20. IF "%2"==""   GOTO DRIVESERROR
  21. rem IF "%1"=="a:" GOTO SOURCEDRIVEOK
  22. rem IF "%1"=="A:" GOTO SOURCEDRIVEOK
  23. rem IF "%1"=="b:" GOTO SOURCEDRIVEOK
  24. rem IF "%1"=="B:" GOTO SOURCEDRIVEOK
  25. GOTO SOURCEDRIVEOK
  26. rem GOTO DRIVESERROR
  27.  
  28. REM ------------------------------SOURCEDRIVEOK-------------------------------
  29.  
  30. :SOURCEDRIVEOK
  31.  
  32. IF "%2"=="c:" GOTO DRIVESOK
  33. IF "%2"=="C:" GOTO DRIVESOK
  34. IF "%2"=="d:" GOTO DRIVESOK
  35. IF "%2"=="D:" GOTO DRIVESOK
  36. IF "%2"=="e:" GOTO DRIVESOK
  37. IF "%2"=="E:" GOTO DRIVESOK
  38. IF "%2"=="f:" GOTO DRIVESOK
  39. IF "%2"=="F:" GOTO DRIVESOK
  40. IF "%2"=="g:" GOTO DRIVESOK
  41. IF "%2"=="G:" GOTO DRIVESOK
  42. IF "%2"=="h:" GOTO DRIVESOK
  43. IF "%2"=="H:" GOTO DRIVESOK
  44. GOTO DRIVESERROR
  45.  
  46. REM ------------------------------SYNTAXERROR---------------------------------
  47.  
  48. :SYNTAXERROR
  49. :DRIVESERROR
  50.  
  51. ECHO │                                                                             │
  52. ECHO │ Syntax : INSTALL [sdrive:] [ddrive:]                                        │
  53. ECHO │          sdrive is the source drive.                                        │
  54. ECHO │          ddrive is the destination drive.                                   │
  55. ECHO │          e.g. A: C:                                                         │
  56. ECHO │               B: D:                                                         │
  57. ECHO │                                                                             │
  58. ECHO │          To install from A: to C: type :-                                   │
  59. ECHO │               INSTALL A: C:                                                 │
  60. ECHO │                                                                             │
  61. ECHO └─────────────────────────────────────────────────────────────────────────────┘
  62. ECHO  
  63. GOTO INSTALLEND
  64.  
  65. REM ------------------------------DRIVESOK------------------------------------
  66.  
  67. :DRIVESOK
  68.  
  69. ECHO │                                                                             │
  70. ECHO │ A subdirectory called AREPLAY is about to be created in the root directory  │
  71. ECHO │ of your %2 drive where all the files on drive %1 will be placed.            │
  72. ECHO │                                                                             │
  73. ECHO └─────────────────────────────────────────────────────────────────────────────┘
  74. ECHO  
  75. ECHO Press Ctrl-C to exit or
  76. PAUSE
  77.  
  78. IF EXIST %1INSTALL.BAT GOTO SOURCEOK
  79. ECHO ┌─────────────────────────────────────────────────────────────────────────────┐
  80. ECHO │ ERROR : Source drive does not exist or not Action Replay installation disk. │
  81. ECHO └─────────────────────────────────────────────────────────────────────────────┘
  82. ECHO  
  83. GOTO INSTALLEND
  84.  
  85. REM ------------------------------SOURCEOK------------------------------------
  86.  
  87. :SOURCEOK
  88.  
  89. MD %2\AREPLAY
  90. COPY %1INSTALL.BAT %2\AREPLAY
  91. IF EXIST %2\AREPLAY\INSTALL.BAT GOTO DESTINATIONOK
  92. ECHO ┌─────────────────────────────────────────────────────────────────────────────┐
  93. ECHO │ ERROR : Destination drive does not exist.                                   │
  94. ECHO └─────────────────────────────────────────────────────────────────────────────┘
  95. ECHO  
  96. GOTO INSTALLEND
  97.  
  98. REM ------------------------------DESTINATIONOK-------------------------------
  99.  
  100. :DESTINATIONOK
  101.  
  102. IF EXIST %2\AREPLAY\AREPLAY.CFG GOTO DELARCONFIG
  103. ECHO  
  104. ECHO Installing files ...... Please wait.
  105. ECHO  
  106. GOTO NODELARCONFIG
  107. :DELARCONFIG
  108. DEL %2\AREPLAY\AREPLAY.CFG
  109. ECHO  
  110. ECHO  
  111. ECHO  
  112. ECHO About to delete all files in the existing %2\AREPLAY directory and the 
  113. ECHO subdirectories PCMAN, GWS, MODS and CODES. Press CTRL-C to abort.
  114. ECHO  
  115. ECHO Deleteing all files in %2\AREPLAY
  116. DEL %2\AREPLAY\*.*
  117. ECHO Deleteing all files in %2\AREPLAY\PCMAN
  118. DEL %2\AREPLAY\PCMAN\*.*
  119. ECHO Deleteing all files in %2\AREPLAY\GWS 
  120. DEL %2\AREPLAY\GWS\*.*
  121. ECHO Deleteing all files in %2\AREPLAY\MODS
  122. DEL %2\AREPLAY\MODS\*.*
  123. ECHO Deleteing all files in %2\AREPLAY\CODES
  124. DEL %2\AREPLAY\CODES\*.*
  125. ECHO  
  126. ECHO  
  127. ECHO Updateing files ...... Please wait.
  128. ECHO  
  129. :NODELARCONFIG
  130.  
  131.  
  132. COPY %1AREPLAYX.EXE %2\AREPLAY
  133. COPY %1PCMANX.EXE %2\AREPLAY
  134. COPY %1CODESX.EXE %2\AREPLAY
  135. COPY %1MODSX.EXE %2\AREPLAY
  136. COPY %1GWSX.EXE %2\AREPLAY
  137.  
  138. %2
  139. CD %2\AREPLAY
  140. MD PCMAN
  141. MD MODS
  142. MD CODES
  143. MD GWS
  144.  
  145. CD %2\AREPLAY
  146. %2\AREPLAY\AREPLAYX
  147. DEL %2\AREPLAY\AREPLAYX.EXE
  148.  
  149. CD %2\AREPLAY\PCMAN
  150. %2\AREPLAY\PCMANX
  151. DEL %2\AREPLAY\PCMANX.EXE
  152.  
  153. CD %2\AREPLAY\CODES
  154. %2\AREPLAY\CODESX
  155. DEL %2\AREPLAY\CODESX.EXE
  156.  
  157. CD %2\AREPLAY\MODS
  158. %2\AREPLAY\MODSX
  159. DEL %2\AREPLAY\MODSX.EXE
  160.  
  161. CD %2\AREPLAY\GWS
  162. %2\AREPLAY\GWSX
  163. DEL %2\AREPLAY\GWSX.EXE
  164.  
  165. CD %2\AREPLAY
  166. ARINTRO
  167. PINSTALL
  168. SETUP
  169.  
  170. CLS
  171. ECHO  █████▒  ███████▒ ██████▒ █████▒      ██▒   █▒ █▒ █▒    ██████▒
  172. ECHO  ██▒  █▒  ██▒   █▒ ██▒  █▒██▒          ██▒  █▒ █▒ █▒    █▒
  173. ECHO  ███████▒  ██████▒  █████▒ ██▒          ██▒ █▒ ██████▒  ██████▒
  174. ECHO  ██▒    █▒  ██▒  █▒  █▒     ██▒          ████▒    █▒    █▒   █▒
  175. ECHO  ██▒     █▒  ██▒  █▒  █▒     █████▒       ███▒    █▒ █▒ ██████▒
  176. ECHO  
  177. ECHO ┌─────────────────────────────────────────────────────────────────────────────┐
  178. ECHO │ If AREPLAY.COM displayed no error messages,  then the Action Replay should  │
  179. ECHO │ now be on and the light on the  controller  will be flashing.  If an error  │
  180. ECHO │ message has been displayed then look towards the back of the manual in the  │
  181. ECHO │ troubleshooting section for the possible cause and a solution.              │
  182. ECHO │ To use the Action Replay, just press the red button on the controller and   │
  183. ECHO │ you will be presented with the Action Replay's main menu.                   │
  184. ECHO │                                                                             │
  185. ECHO └─────────────────────────────────────────────────────────────────────────────┘
  186. PAUSE
  187. ECHO ┌─────────────────────────────────────────────────────────────────────────────┐
  188. ECHO │ Read the file UPDATE.TXT for information on the latest changes and fixes.   │
  189. ECHO │ Note: The PROT.EXE protected mode driver must be installed if you want to   │
  190. ECHO │       use the Action Replay with protected mode games.                      │
  191. ECHO │ Note: People upgrading - Once installed, use the "upgrade the flash" option │
  192. ECHO │       in the Action Replay SETUP.EXE program to re-program your cards flash │
  193. ECHO │       ROM to the new version.                                               │
  194. ECHO │                                                                             │
  195. ECHO │ ATTENTION: The Difference trainer has been modified, its function and       │
  196. ECHO │            operation has changed from previous AR versions. The manual      │
  197. ECHO │            entry for the Difference trainer is now incorrect and the file   │
  198. ECHO │            UPDATE.TXT should be read for information on the update.         │
  199. ECHO │                                                                             │
  200. ECHO └─────────────────────────────────────────────────────────────────────────────┘
  201. LH AREPLAY
  202.  
  203. :INSTALLEND
  204.