home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1993 #2 / Image.iso / games2 / t7gpatch.zip / AUTOEXEC.TXT next >
Text File  |  1993-06-05  |  11KB  |  260 lines

  1. REM 
  2. REM Introduction:
  3. REM =============
  4. REM This is a commented AUTOEXEC.BAT model, intended for intermediate 
  5. REM users who wish to optimize their configurations for playing "The 7th 
  6. REM Guest". You may edit this model with the EDIT command from DOS 5.0 or 
  7. REM 6.0, and replace the generic information with your system-specific
  8. REM information. Doing so will create a configuration tailored to operation 
  9. REM of "The 7th Guest". 
  10. REM 
  11. REM In order to make use of this model you must be familiar with the EDIT
  12. REM program and your AUTOEXEC.BAT and CONFIG.SYS file structures, although
  13. REM users who are unsure of such things may find help by glancing over the
  14. REM documentation supplied with their DOS operating system software.
  15. REM
  16. REM
  17. REM 
  18. REM Legal Disclaimer:
  19. REM =================
  20. REM This model is intended as an aid and represents no guarantee that
  21. REM Virgin Games, Inc.'s product, The 7th Guest will operate on your
  22. REM system at any level of performance. Further, Virgin Games, Inc. will 
  23. REM not be held responsible for the use or misuse of this model or boot
  24. REM disk. The user assumes all risk when modifying or using this boot
  25. REM disk with any computer system.
  26. REM 
  27. REM 
  28. REM 
  29. REM DOS 6.0 note:
  30. REM =============
  31. REM The floppy disk which contains this model is a DOS 5.0 system disk. 
  32. REM You will not be able to use some DOS 6.0 command parameters in con-
  33. REM junction with this boot disk. If you wish to use DOS 6.0 command 
  34. REM parameters with this model, you will need to copy this model onto
  35. REM a DOS 6.0 system disk. If you wish to use DOS 6.0's multiple con-
  36. REM figuration capability, you may wish to incorporate this model as 
  37. REM a menu item.
  38. REM 
  39. REM 
  40. REM 
  41. REM Model File Format:
  42. REM ==================
  43. REM This model is nothing more than a heavily commented autoexec.bat file,
  44. REM in fact you could theoretically name the file to AUTOEXEC.BAT and boot
  45. REM your computer with it, however it will not allow you to run The 7th
  46. REM Guest in its current form.
  47. REM 
  48. REM However, by filling in the blanks, you can build a file which you 
  49. REM could rename to AUTOEXEC.BAT on this floppy disk and then boot your 
  50. REM computer system to play The 7th Guest without having to change your
  51. REM current computer configuration.
  52. REM 
  53. REM Each section of the AUTOEXEC.BAT file will provide comments about the
  54. REM information needed. You may of course copy your current AUTOEXEC.BAT 
  55. REM file to the end of this model and then cut and paste the lines
  56. REM into the appropriate section rather than typing in such info-
  57. REM rmation from a printout listing of your AUTOEXEC.BAT file.
  58. REM 
  59. REM 
  60. REM 
  61. REM Copying Your Current Configuration Into This File:
  62. REM ==================================================
  63. REM To copy your existing AUTOEXEC.BAT file into this model, type the
  64. REM following command lines (without the quote marks) from the floppy 
  65. REM disk drive which contains the update disk:
  66. REM 
  67. REM      "COPY AUTOEXEC.TXT+C:\AUTOEXEC.BAT AUTOEXEC.TMP" 
  68. REM      "COPY AUTOEXEC.TMP AUTOEXEC.TXT"
  69. REM      "DEL  AUTOEXEC.TMP"
  70. REM      "EDIT AUTOEXEC.TXT"
  71. REM
  72. REM Obviously, you must either print out or write down these commands,
  73. REM then exit from whatever command was used to view this file, issue 
  74. REM the above commands, then use the EDIT utility to resume your place 
  75. REM in this file.
  76. REM 
  77. REM Once the above line is typed, the current file should have the
  78. REM contents of your current AUTOEXEC.BAT file copied to the end of it.
  79. REM If you received any errors, you may have mistakenly issued the com-
  80. REM mands from the C:> prompt and should instead issue the commands from 
  81. REM the floppy disk drive.
  82. REM 
  83. REM Once "imported" into this document, you can cut and paste lines by
  84. REM highlighting the line you wish to cut, cutting the text to the copy 
  85. REM buffer, and then moving the cursor to the line where it should be
  86. REM inserted and pasting the text to that line.
  87. REM
  88. REM For quick reference, to highlight a line, move the cursor to the
  89. REM beginning of the line, then press and hold the Shift key while pres-
  90. REM sing the Down Arrow key. To cut a highlighted line, press and hold
  91. REM the Shift key while pressing the Delete key. To paste text which has
  92. REM been cut, press and hold the Shift key while pressing the Insert key.
  93. REM 
  94. REM 
  95. REM 
  96. REM Building The Model:
  97. REM ===================
  98. REM Once you have provided your system specific information in each 
  99. REM area you should eliminate each line which begins with "REM" 
  100. REM (like this one) and save this file as AUTOEXEC.BAT on the floppy 
  101. REM disk. Do NOT simply remove the word "REM", remove complete lines.
  102. REM 
  103. REM 
  104. REM 
  105. REM At Last -- The Model:
  106. REM =====================
  107. REM Following this section you will find the actual AUTOEXEC.BAT model
  108. REM with comments which appear before each command line entry.
  109. REM 
  110. REM 
  111. REM 
  112. REM ECHO command:
  113. REM =============
  114. REM The echo command is used to control the display of batch file com-
  115. REM mands. Most AUTOEXEC.BAT files begin with "@ECHO OFF". The @ symbol
  116. REM tells DOS to refrain from displaying the current line.
  117. REM
  118. REM If for some reason, your computer does not boot up as expected, you
  119. REM may wish to place a REMark statement in front of this line so that
  120. REM you may disable this command and read each line in the file as it is
  121. REM processed.
  122.  
  123. @Echo off
  124.  
  125. REM 
  126. REM PATH command:
  127. REM =============
  128. REM The PATH command specifies which directories DOS should search when
  129. REM commands are issued without a path specification.
  130. REM 
  131. REM For example, when you issue the MEM command, rather than C:\DOS\MEM, 
  132. REM DOS searches all directories in the PATH statement until it finds a 
  133. REM file which meets the requirements -- in this case a filename which 
  134. REM begins with MEM and ends with an .EXE, .BAT, or .COM extension. When 
  135. REM DOS finds "C:\DOS" in the path, it should then find C:\DOS\MEM.EXE 
  136. REM and execute it.
  137. REM 
  138. REM No path declaration is necessary for The 7th Guest. However, other 
  139. REM commands (like this file) may not work so well without access to 
  140. REM the DOS path, so...
  141.  
  142. path c:\dos
  143.  
  144. REM 
  145. REM PROMPT command:
  146. REM ===============
  147. REM The prompt command defines the series of characters used to
  148. REM inform the user that DOS is ready to accept commands.
  149. REM 
  150. REM No prompt declaration is needed for The 7th Guest, however you may
  151. REM specify the popular prompt command included below, or modify it as
  152. REM you see fit. "$p" indicates that the current path should be dis-
  153. REM played. "$g" indicates the greater than symbol, ">", should be dis-
  154. REM played.
  155.  
  156. prompt $p$g
  157.  
  158. REM 
  159. REM 
  160. REM SET command:
  161. REM ============
  162. REM SET commands define environment variables. Programs which use such
  163. REM variables will then search all available environment variables for
  164. REM a match. Once found, the program will use the associated data.
  165. REM 
  166. REM For example, the installation program for The 7th Guest will look 
  167. REM for the BLASTER environment variable if you specified that you had 
  168. REM a Sound Blaster (tm) sound card. If you had a line in your
  169. REM AUTOEXEC.BAT file such as "SET BLASTER=A220 D1 I5 T3", then the 
  170. REM install would assume your sound card settings match this information.
  171. REM 
  172. REM However, if you do not specify the BLASTER environment variable, 
  173. REM The 7th Guest will just assume the default settings and ask you to 
  174. REM confirm or specify new settings. The 7th Guest does NOT need the
  175. REM BLASTER environment variable specified in order to run.
  176. REM 
  177. REM In fact, there is no need for SET commands to run The 7th Guest. You 
  178. REM should not carry over any SET commands from your AUTOEXEC.BAT file
  179. REM unless required for the immediate operation of your computer (as op-
  180. REM posed to programs you MIGHT run like a windows environment).
  181. REM 
  182. REM It is possible that some device drivers require environment vari-
  183. REM ables. Such SET commands SHOULD be listed here:
  184.  
  185.  
  186.  
  187. REM CALL, IF, For-Do, GOTO, and SHIFT commands:
  188. REM ===========================================
  189. REM The call command may not be very beneficial to the operation of The
  190. REM 7th Guest because many such statements are used to call menus or
  191. REM other batch files whose operation may be invisible the user. It would
  192. REM be safest to ensure that no call commands are included in this
  193. REM particular AUTOEXEC.BAT file.
  194. REM 
  195. REM The operations followed by the IF, GOTO, SHIFT, and For-DO commands
  196. REM are specific to the control of particular commands and parameters and
  197. REM are rarely included in AUTOEXEC.BAT files, and for the purposes of
  198. REM The 7th Guest are unnecessary. 
  199.  
  200.  
  201.  
  202. REM PROGRAMS section:
  203. REM =================
  204. REM The most important section of the AUTOEXEC.BAT file is without a
  205. REM doubt the program (command) section. These lines will have a drama-
  206. REM tic affect on the operation of your computer. For DOS 5.0 the
  207. REM placement of the MSCDEX.EXE line may very well determine your
  208. REM ability to place this program into the high memory area and leave
  209. REM you with less memory available in conventional memory.
  210. REM 
  211. REM For this reason it is recommended that you place the MSCDEX.EXE
  212. REM line as the first program executed in the AUTOEXEC.BAT file. In
  213. REM general, DOS 5.0 users should place programs to be loaded high
  214. REM in order by size -- largest first, smallest last (except MSCDEX 
  215. REM which should ALWAYS be first).
  216. REM 
  217. REM DOS 6.0 users needn't worry about order when using the MEMAKER
  218. REM command, because everything intended to load high will do so.
  219. REM 
  220. REM The following section includes a sample MSCDEX.EXE line. Of parti-
  221. REM cular note is the /M:20 parameter. If your CD-ROM software did not
  222. REM configure the parameter to this value, you should increase it. If
  223. REM you are one of the lucky few who has enough free conventional mem-
  224. REM ory, you may wish to increase this number to 32 for some additional
  225. REM performance. When setting the /M parameter to 32, you should ensure
  226. REM that your largest executable program size as defined in the MEM com-
  227. REM mand report is at least 580k.
  228. REM
  229. REM It is important to note that while your system may require specific
  230. REM commands in order to run, The 7th Guest will require this section
  231. REM to contain an MSCDEX.EXE line, and another line which loads a
  232. REM mouse driver.
  233. REM 
  234. REM Because this section will be different for each and every computer
  235. REM depending on the CD-ROM, video, sound and mouse software used, you
  236. REM should not for a second assume that leaving these default settings
  237. REM will enable you to play The 7th Guest.
  238. REM
  239. REM YOU MUST REPLACE THE FOLLOWING INFORMATION WITH YOUR SYSTEM-SPECIFIC 
  240. REM PROGRAM LINES:
  241.  
  242. C:mscdex.exe /d:mvcd001 /m:20 /v /e
  243. C:mouse.com
  244.  
  245. REM Startup Stuff:
  246. REM ==============
  247. REM This last section has been placed to better facilitate entry into
  248. REM The 7th Guest and can be modified or removed completely if it does 
  249. REM not suit your taste.
  250.  
  251. Echo Your system is now ready to play The 7th Guest...
  252.  
  253. REM You could place the following lines in this model to have The 7th
  254. REM Guest started immediately upon booting:
  255. REM
  256. REM c:
  257. REM cd \id\t7g
  258. REM v !
  259.  
  260.