home *** CD-ROM | disk | FTP | other *** search
/ BigMax 12 / MEGARACE.iso / bootdisk.txt < prev    next >
Text File  |  1996-08-02  |  13KB  |  294 lines

  1. How To Make A Boot Disk with DOS 5.x - 6.x Guide
  2. Mindscape Technical Support
  3. revised 5/30/96
  4. Document Length: 5 printed pages
  5.  
  6.  
  7.         ******************** CAUTION - DISCLAIMER ********************
  8.     NOTICE: Mindscape, Inc. will not be responsible for any damage or other
  9.     consequences resulting from changes made to system configuration files.
  10.     You make any changes at your own risk.
  11.  
  12.     Even is you are familiar with modifying your system and/or files,
  13.     Mindscape still suggests you first print out a hard copy of the file
  14.     & make backup copies of any files you intend to modify.
  15.         ******************** CAUTION - DISCLAIMER ********************
  16.  
  17. NOTE: < > means to press the associated key on the keyboard.
  18. Example:  <Enter> means press the Enter Key.
  19.  
  20.  
  21. WHY MAKE A SYSTEM BOOT DISK?
  22.    A system boot disk is useful to help troubleshoot problems running your
  23.    software & to free up additional memory.  The configuration your machine
  24.    loads when you turn it on is fine for the majority of your programs.
  25.    However, some programs may not run or run correctly because of unnecessary
  26.    TSR's (Terminate and Stay Resident programs) that load in your startup
  27.    files when you turn on your computer.  A boot disk will help you tailor
  28.    a configuration to the program in question without having to risk creating
  29.    new problems running your current software.
  30.  
  31.  
  32. MAKING A SYSTEM BOOT DISK
  33.  1. Insert a blank diskette in drive A:.
  34.  
  35.  2. At a C:\> DOS prompt, type:
  36.  
  37.         FORMAT A:/S  <Enter>
  38.           (type BOOTDISK when it asks for "Volume Label".)
  39.  
  40.     This will format the disk in drive A: with the sytem files needed for
  41.     a boot disk.
  42.    
  43.  3. After the disk is formatted, you need to copy the CONFIG.SYS and
  44.     AUTOEXEC.BAT to the boot disk.  From the C:\> DOS prompt, type:
  45.  
  46.         COPY CONFIG.SYS A:  <Enter>
  47.           (it should respond with: "1 file(s) copied".)
  48.  
  49.         COPY AUTOEXEC.BAT A:  <Enter>
  50.           (it should respond with: "1 file(s) copied".)
  51.  
  52.  4. Go to the A:\> DOS prompt by typing:
  53.  
  54.         A:  <Enter>
  55.  
  56.  5. Edit your AUTOEXEC.BAT file on the boot disk, using the DOS editor.
  57.     REMark or remove any unnecessary TSR's.  To do this type:
  58.  
  59.         EDIT AUTOEXEC.BAT  <Enter>
  60.  
  61.     A blue screen should appear with the contents of the AUTOEXEC.BAT file.
  62.     Below is a sample AUTOEXEC.BAT.  It lists only the minimal files necessary
  63.     to run Mindscape programs.
  64.  
  65.   NOTE: Your AUTOEXEC.BAT may not look like the sample listed below.  If your
  66.         AUTOEXEC.BAT looks different, do not change it to look like the
  67.         sample below.  Refer to your computer documentation for specific line
  68.         syntax for the drivers loading.
  69.          
  70.          @ECHO OFF
  71.          PROMPT $P$G
  72.          SET PATH=C:\DOS
  73.          SET TEMP=C:\TEMP                       <-Make sure directory exists
  74.          SET BLASTER=A220 I5 D1                 <-Sound Card settings line
  75.          LH C:\DOS\MSCDEX.EXE /D:MSCD001 /M:10  <-Microsoft's CD-ROM Extension
  76.                                                   driver
  77.          LH C:\MSINPUT\MOUSE.EXE /Q             <-Mouse Driver
  78.          REM C:\DOS\POWER.EXE                   <-Unnecessary TSR
  79.  
  80.     Type REM in front of any unnecessary TSR's like the POWER.EXE line listed
  81.     above.  To save the new changes, use your mouse to click SAVE from the
  82.     File pulldown menu, then click EXIT.  If your mouse is not working, press
  83.     <ALT> <F> from your keyboard.  Press <S> to Save and <X> to Exit.
  84.  
  85.  6. Edit your CONFIG.SYS file on the boot disk, using the DOS editor.  REMark
  86.     or remove any unnecessary TSR's.  To do this type:
  87.  
  88.         EDIT CONFIG.SYS  <Enter>
  89.  
  90.     A blue screen should appear with the contents of the CONFIG.SYS file.
  91.     Below is a sample CONFIG.SYS.  It lists only the minimal files necessary
  92.     to run Mindscape programs.
  93.  
  94.   NOTE: Your CONFIG.SYS may not look like the sample listed below.  If your
  95.         CONFIG.SYS looks different, do not change it to look like the sample
  96.         below.  Refer to your computer documentation for specific line
  97.         syntax for the drivers loading.
  98.  
  99.          DEVICE=C:\DOS\HIMEM.SYS                   <-Memory manager
  100.          DEVICE=C:\DOS\EMM386.EXE                  <-Extended / Expanded
  101.                                                      memory manager
  102.          DEVICEHIGH=C:\DOS\SETVER.EXE              <-DOS Set Version driver
  103.          DEVICEHIGH=C:\DEV\NEC_IDE.SYS /D:MSCD001  <-CD-ROM driver
  104.          REM DEVICE=C:\SB16\CTMMSYS.SYS            <-Unnecessary TSR
  105.          REM DEVICE=C:\SB16\CTSB16.SYS             <-Unnecessary TSR
  106.          DOS=UMB
  107.          FILES=30                                  <-Recommended # of Files
  108.          BUFFERS=30,0                              <-Recommended # of Buffers
  109.          DOS=HIGH
  110.  
  111.     Type REM in front of any unnecessary TSR's like the CTMMSYS.SYS &
  112.     CTSB16.SYS lines listed above.  To save the new changes, use your mouse
  113.     to click SAVE from the File pulldown menu, then click EXIT.  If your mouse
  114.     is not working, press <ALT> <F> from your keyboard.  Press <S> to Save
  115.     and <X> to Exit.
  116.  
  117. EMM386.EXE
  118.     Take a look at the EMM386.EXE line.  In order for EMM386 to work, it must
  119.     load after HIMEM.SYS, and it should apear before any other device drivers.
  120.  
  121.     You may run into EMM386 parameters like X= and I=.  The X= argument
  122.     prevents a certain range of memory from being used while the I= argument
  123.     makes available a certain range of memory.  If the boot disk does not
  124.     help to resolve the problems you experienced, remove these parameters as
  125.     a last resort.
  126.  
  127. SOUND CARD DRIVERS
  128.     Some sound cards require a driver loaded in the CONFIG.SYS or AUTOEXEC.BAT
  129.     to operate.  If you have a sound card that requires such a driver, be sure
  130.     to add it to the CONFIG.SYS or AUTOEXEC.BAT on the boot disk.  Listed
  131.     below is a listing of sound cards and the DOS drivers needed to provide
  132.     the necessary Sound Blaster Emulation.  If you have one of the cards
  133.     listed below.  Make sure you have the necessary driver loaded.  If not,
  134.     then consult your sound card documentation or call the manufacturer for
  135.     assistance.
  136.  
  137.                               SOUND CARD DRIVERS
  138.  
  139.     DIAMOND sound cards                   ENSONIQ SOUNDSCAPE
  140.         AUTOEXEC.BAT                          AUTOEXEC.BAT
  141.           C:\DIAMOND\SNDINIT /B                 SET BLASTER=A220 Ixx Dx
  142.           SET BLASTER= <see above>              C:\SNDSCAPE\SSINIT /I
  143.                                                 C:\SNDSCAPE\VSB_EMM.COM
  144.  
  145.  
  146.     FORTE 16- Common on Packard Bells     GRAVIS ULTRASOUND
  147.         AUTOEXEC.BAT                          AUTOEXEC.BAT
  148.           C:\FORTE16\UTILITY\EMUTSR             C:\ULTRASND\ULTRNINIT
  149.           SET BLASTER= <see above>              SBOS.BAT
  150.                                                 SET BLASTER= <see above>
  151.  
  152.  
  153.     MAD 16                                MAGIC S20
  154.         AUTOEXEC.BAT                          AUTOEXEC.BAT
  155.           C:\MAD16\M16INIT /B                   C:\MAGICS20\SNDINIT /B
  156.           SET BLASTER= <see above>              SET BLASTER= <see above>
  157.  
  158.  
  159.     MONTE CARLO By Turtle Beach         
  160.         CONFIG.SYS                      
  161.           DEVICE=C:\MCARLO\MCMODE -S
  162.         AUTOEXEC.BAT
  163.           SET BLASTER= <see above>
  164.  
  165.  
  166.     PRO AUDIO SPECTRUM 16
  167.         CONFIG.SYS
  168.           DEVICE=SPECTRUM\MVSOUND.SYS D:* Q:* S:**
  169.              *D: DMA Channel     *Q: IRQ Settings
  170.             **S: Sound Blaster Emulation ON / OFF And Settings
  171.           AUTOEXEC.BAT
  172.             SET BLASTER= <see above>
  173.  
  174.  
  175.     SC400                                 SOUND 16A - Common on Packard Bells
  176.         AUTOEXEC.BAT                         AUTOEXEC.BAT
  177.           C:\SC400\UTILITY\SNDINIT /B          C:\SOUND16A\UTILITY\SETMODE /SB
  178.           SET BLASTER= <see above>          or C:\AUDIO\SNDINIT.EXE /B
  179.                                                SET BLASTER= <see above>
  180.  
  181.  
  182.     SOUND144 - Common on Packard Bells
  183.         AUTOEXEC.BAT
  184.           C:\SOUND144\UTILITY\SETMODE /SBP
  185.        or C:\SOUND144\UTILITY\AZCAL.EXE
  186.           SET BLASTER= <see above>
  187.  
  188.  NOTE:  Sound Blaster cards now include CONFIG.SYS driver (as noted in the
  189.         sample CONFIG.SYS above).  These drivers offer Sound Blaster support
  190.         for programs that do not provide their own.  As Mindscape programs
  191.         provide Sound Blaster support, these drivers are not necessary and
  192.         REMarking them from your CONFIG.SYS will free up an additional 35K
  193.         of Conventional Memory.
  194.  
  195.  7. To use the Boot Disk, restart the machine (by either the reset button
  196.     or <CTRL> <ALT> <DEL>) while the boot disk is in drive A:.
  197.  
  198.  
  199. CONTACTING TECHNICAL SUPPORT
  200.    If these suggestions / steps did not resolve the problem you are
  201.    experiencing, please contact Technical Support and be able to provide
  202.    the following information:
  203.  
  204.  1. Copies of your Config.sys and Autoexec.bat from the hard drive.
  205.     Copies of your Config.sys, Autoexec.bat, and Mem /c/p from your boot disk
  206.     in printed form or a text only file.
  207.  2. Name of program
  208.  3. Version of program
  209.  4. Media Type:  (CD-ROM or Diskette)
  210.  5. Platform of program:  (DOS)
  211.  6. Exact problem and steps necessary to reproduce.
  212.     Include any error messages and be as precise as possible in describing
  213.     the problem and where it happens.
  214.  7. Computer make and model (e.g. IBM Aptiva, Packard Bell Legend, etc...)
  215.  8. CPU chip and speed (e.g. 486 DX4 100, P90, etc...)
  216.  9. RAM [memory] (e.g. 8 MB, 16 MB, etc...)
  217. 10. Video Card Manufacturer and model number
  218.        (e.g. Diamond Stealth 64 PCI, Cirrus Logic 542X, etc...)
  219. 11. Sound Card Manufacturer and model number
  220.        (e.g. Creative Labs Sound Blaster 16 PnP, Ensoniq UltraSound, etc...)
  221. 12. Mouse driver and version
  222.        (e.g. Microsoft Mouse Driver 8.2, Logitech version 5.0, etc...) 
  223. 13. CD ROM Drive Manufacturer and model number.
  224.        (e.g. Texel DM 5924 external , NEC 6X, etc...)
  225.  
  226.  
  227. If you have any further questions, please contact Mindscape directly at the
  228. office nearest you:
  229.  
  230.         - - - - - Mindscape USA - - - - -
  231.  
  232.   800 Automated Support:  800-409-1497  24hrs
  233.   Phone: 415-898-5157   8:30 am - 5:00 pm Pacific Time
  234.   Fax:   415-897-5186  24hrs                     BBS:  415-897-2867  24hrs
  235.   Mail:  88 Rowland Way,  Novato, CA   94945:  attn: Tech Support
  236.  
  237.                               Online Services
  238.   Internet: Webpage:  http://www.mindscape.com
  239.            TS-Email:  Support@mindscape.com
  240.   America OnLine: keyword=MINDSCAPE              CompuServe: "GO MINDSCAPE" 
  241.  
  242.  
  243.         - - - - - Mindscape UK - - - - - 
  244.  
  245.   Phone:   44-1-444-239-600                      Facsimile:  44-1-444-248-996
  246.    Mail:   Mindscape International, UK
  247.            Priority House, Charles Ave.
  248.            Maltings Park, Burgess Hill
  249.            West Sussex             RH15 9TQ
  250.            ENGLAND
  251.  
  252. UK Website: http://www.mindscapeuk.com
  253.  
  254.                              Online Services
  255. Currently, Mindscape UK does not have any Online services.  Please correspond
  256. with their Technical Support via Mail, Facsimile or Telephone.
  257.  
  258.                              
  259.         - - - - - Mindscape Australia - - - - - 
  260.  
  261.   Phone:   61-2-899-2277                         Facsimile:  61-2-899-2348
  262.    Mail:   Mindscape International, Australia
  263.            5-6 Gladstone Road
  264.            Castle Hill
  265.            New South Wales 2154
  266.            AUSTRALIA
  267.  
  268.                              Online Services
  269. Currently, Mindscape Australia does not have any Online services.  Please
  270. correspond with their Technical Support via Mail, Facsimile or Telephone.
  271.  
  272.         - - - - - Mindscape Germany- - - - -
  273.  
  274. TECHNISCHE UNTERSTUTZUNG
  275.      
  276. Falls bei dieser Software technische Probleme, wie z. B. Funktionsstorungen 
  277. auftreten, setzen Sie sich bitte mit unserem Kundendienst in Verbindung:
  278.      
  279. Adresse:                Technische Unterstutzung, Mindscape Gmbh,
  280.                     Zeppelin Strasse 321,
  281.                     45470 Muelheim a.d. Ruhr, Deutschland.
  282.      
  283. Telefon:        0208 9924114
  284.      
  285. Fax:            0208 9924129
  286.      
  287. UK Website: http://www.mindscapeuk.com
  288.      
  289. Geschaftsstunden: Mo, Mi, Fr, von 15.00 bis 18.00 Uhr.
  290.      
  291. Der Kundendienst ist nur fur technische Probleme eingerichtet. Bitte haben Sie 
  292. Verstandnis, dab wir Ihnen keine Hinweise und Spieltips geben konnen.
  293.  
  294.