home *** CD-ROM | disk | FTP | other *** search
/ Share Gallery 1 / share_gal_1.zip / share_gal_1 / UT / UT244.ZIP / AUTO.SPD < prev    next >
Text File  |  1991-10-15  |  3KB  |  92 lines

  1.  
  2.                     MODIFYING AUTOEXEC.BAT
  3.  
  4. One way to speed up your computer is to modify AUTOEXEC.BAT
  5. This is done by adding FASTOPEN and PATH commands to
  6. AUTOEXEC.BAT file.
  7.  
  8. (1)  Using the PATH command
  9.  
  10. When you enter a name of a command on the DOS command line,
  11. DOS looks only in the current directory for that command
  12. name. If the file is not found, DOS will respond
  13.  
  14. Bad command or file name
  15.  
  16. If you know that your program is in another directory, you
  17. can change to that directory and run the program. Instead of
  18. changing directory every time you run a program from a
  19. different directory, you can add a line that includes the
  20. PATH command in your AUTOEXEC.BAT file.
  21.  
  22. The DOS PATH command allows you to run  programs without
  23. changing the current directory. It can be used as follows
  24.  
  25. PATH C:\SUB1;C:\SUB2;C:\SUB3
  26.  
  27. Where SUB1, SUB2, SUB3 should be replaced with the names of
  28. your subdirectories. You can specify as many subdirectories
  29. as you want as long as the number of characters in the PATH
  30. line does not exceed 127.
  31.  
  32. When you run a program, DOS searches for the program name in
  33. the current directory, before executing the PATH command to
  34. look in the other subdirectories.
  35.  
  36.                     ---------------------
  37. (2) USING FASTOPEN
  38.  
  39. FASTOPEN is a DOS command which is available on DOS 3.3 or
  40. higher. The way it works is when you access a file on a hard
  41. disk FASTOPEN remembers the location of the file so that DOS
  42. doesn't have to search the hard disk if the file is used
  43. again. Without FASTOPEN DOS has to read the file allocation
  44. table (FAT) on the hard disk to find the location of the file
  45. before it retrieves it.  To start up FASTOPEN for drive C,
  46. you may enter the command
  47.  
  48.                     FASTOPEN C:   (Enter)
  49.  
  50. You can track up to 34 files, including subdirectories using
  51. the above command. You can increase this number. To track 100
  52. files, you would type
  53.  
  54.                    FASTOPEN C:=100  (Enter)
  55.  
  56.  
  57. For installation of FASTOPEN or PATH  on the AUTOEXEC.BAT use
  58. EDLIN Command, or any wordprocessor to edit AUTOEXEC.BAT
  59.  
  60. If you are not familiar with  creating or modifying
  61. AUTOEXEC.BAT refer to your DOS manual or to a friend who
  62. knows more about computers.
  63.  
  64. There are 2 good shareaware programs that will help you
  65. understand more about batch files. you can download these
  66. programs from a local BBS or order them through the mail
  67. from one of the shareware distributors listed in another
  68. section of this disk.
  69.  
  70. You can also get registered versions directly from their
  71. authors:
  72.  
  73. These programs are:
  74.  
  75. PC-LEARN                           Registration fee $25.00
  76.  
  77. author: Jim Hood
  78.         P.O. Box 1506
  79.         Merser Island, WA 98040
  80.         (206) 236-0470
  81.  
  82.  
  83. TUTOR.COM                          Registration fee $10.00
  84.  
  85. Author:
  86.       Computer Knowledge
  87.       P.O. Box 91176
  88.       Los Angelos, CA 90009
  89.  
  90.              ----------------------------------
  91.  
  92.