home *** CD-ROM | disk | FTP | other *** search
/ 8+1 Entertainment Pack: Game Pack 2 / VOL02.bin / hotkeys / hotkey4 / what_box / dostips.txt < prev    next >
Encoding:
Text File  |  1993-12-01  |  10.0 KB  |  359 lines

  1.           ADVANCED DOS HINTS & TIPS
  2.  
  3. ---------------------------------------------
  4.  
  5.                    DRIVE Z
  6.  
  7. This tip allows you to have up to 26 virtual
  8. disk drives ranging from A: to Z:.  These can
  9. use actual space on your hard disk, on a RAM
  10. disk or on a floppy.
  11.  
  12. 1. In your CONFIG.SYS file, add the line:
  13.    LASTDRIVE=Z
  14.  
  15. 2. Make sure SUBST.EXE (comes with MS-DOS)
  16.    is in your root directory
  17.  
  18. 3. In your AUTOEXEC.BAT file, or from the
  19.    DOS prompt, type:
  20.  
  21. SUBST Z: C:\SUB-DIRECTORY\SUB-SUB-DIRECTORY
  22.  
  23.    where z: is any letter between A and Z
  24.    which is not an actual drive. C: is the
  25.    drive which contains the files and the
  26.    sub-directory(ies) is the current path.
  27.  
  28. 4. Simply use the new drive as if it were
  29.    another disk drive.
  30.  
  31. ---------------------------------------------
  32.  
  33.                   SHORTCUT
  34.  
  35. This tip speeds up file operations at the
  36. DOS prompt with MS-DOS 3.0 or newer.  Instead
  37. of the wildcard specifier *.* which means
  38. "all files" simply type a period.  The
  39. following statements work on all files within
  40. a directory:
  41.  
  42. DEL .      - Deletes all files in directory
  43. COPY . A:  - Copies all files in directory
  44.              to A:
  45. DIR ./W    - Lists all files in directory
  46.              in wide format.
  47.  
  48. ---------------------------------------------
  49.  
  50.                 FORCE FORMAT
  51.  
  52. Do you want to format a 1.44 meg floppy as
  53. 720k, or format a 1.2 meg disk as 360k?  Here
  54. are the commands:
  55.  
  56.    format /f:720
  57.        or
  58.    format /f:360
  59.  
  60. ---------------------------------------------
  61.  
  62.               PRINTING GRAPHICS
  63.  
  64. MS-DOS comes with a small TSR program called
  65. GRAPHICS.COM which allows you to print a
  66. graphic mode screen image to paper.  Simply
  67. type GRAPHICS and press [Enter] from within
  68. your root or DOS directory, then run your
  69. graphics program.  When you have something
  70. on the screen which you want to print, hold a
  71. [Shift] key and simultaneously press the
  72. [Print Screen] key.  On older versions of
  73. MS-DOS this only works in CGA graphics.
  74.  
  75. ---------------------------------------------
  76.  
  77.                MIXED VERSIONS
  78.  
  79. You can use programs which came with older
  80. versions of MS-DOS with Version 5 or greater
  81. by using SETVER.EXE first.  See your MS-DOS
  82. manual.  An example is the KEYBDV.COM which
  83. came only with MS-DOS version 3.20.  This
  84. changed the positions of the characters on
  85. the keyboard to the more efficient (but hard
  86. to learn) Dvorak configuration.  Now you can
  87. use it with Ver 5.0 or greater.
  88.  
  89. ---------------------------------------------
  90.  
  91.                     XCOPY
  92.  
  93. If you have a 3.5" drive and a 5.25" drive,
  94. you may wish for a more efficient way to copy
  95. all files from one to the other than COPY
  96. *.*. This is especially annoying if the
  97. floppies have sub-directories.  Use XCOPY.EXE
  98. which comes with MS-DOS.  XCOPY will copy
  99. all files on one disk onto another even if
  100. the disks are of different type.  With the
  101. most recent version you even sub-directories
  102. are faithfully preserved. Here are some
  103. examples of XCOPY:
  104.  
  105. XCOPY A: B: - Will copy everything in root
  106.    directory of disk in A: to the disk in B:
  107.  
  108. XCOPY C:\STUFF A: - Will copy everything in
  109.    STUFF sub-directory to A:
  110.  
  111. XCOPY B: A:/S - Recent version only - will
  112.    copy entire B: disk, complete with
  113.    sub-directories onto A: disk, and
  114.    replicate the sub-directories.
  115.  
  116. ---------------------------------------------
  117.  
  118.           MAKE YOUR OWN MENU SYSTEM
  119.  
  120. Writing circular batch files is quite easy
  121. and makes fancy "menu maker" programs look
  122. silly.  With this technique, your computer
  123. will automatically show a menu, then allow
  124. the you to pick a program simply by pressing
  125. a number. For this example, we'll pretend
  126. that you use a word processor called
  127. WORDX.EXE, a game called AQUALUNG.EXE, and
  128. The 21st Century Almanac.  We'll put these
  129. programs in their own fictitious
  130. sub-directories.
  131.  
  132. 1.  Make a menu with any editor or word
  133. processor which produces standard ASCII
  134. files.  The menu is a text file with less
  135. than 25 lines of text.  Let's call the menu
  136. "MENU.TXT." Our example looks like this:
  137.  
  138.                 MY MAIN MENU
  139.                 ^^^^^^^^^^^^
  140.    (Type  1, 2 or 3, then press [Enter].)
  141.  
  142.                   1. WORDX
  143.                  2. AQUALUNG
  144.            3. WHAT'S IN THAT BOX?
  145.  
  146.  
  147. 2. Put these lines at the end of your
  148.    AUTOEXEC.BAT file:
  149.  
  150.          CLS
  151.          TYPE MENU.TXT
  152.  
  153.    The first line, CLS, simply CLears the
  154.    Screen. The second line uses the DOS
  155.    command TYPE to present the menu.
  156.  
  157. 3. Make a batch file called 1.BAT with your
  158.    word processor (in ASCII mode).  It will
  159.    contain these lines:
  160.  
  161.          CD \WORDPROC
  162.          WORDX
  163.          CLS
  164.          TYPE MENU.TXT
  165.  
  166.     The first line Changes the Directory to
  167.     the one containing your word processing
  168.     program.  The second line actually runs
  169.     the WORDX program.  When you are done
  170.     with word processing, the next line is
  171.     executed, which Clears the Screen and
  172.     again displays the menu.
  173.  
  174. 4. Make another batch file, this one called
  175.    2.BAT, which will run AQUALUNG if the user
  176.    types 2. It will contain these lines:
  177.  
  178.          CD \GAMES
  179.          AQUALUNG
  180.          CLS
  181.          TYPE MENU.TXT
  182.  
  183. 5. And make 3.BAT, which will look like
  184.    this:
  185.  
  186.          CD \WBOX
  187.          WBOX
  188.          CLS
  189.          TYPE MENU.TXT
  190.  
  191.     As you can guess, this third batch file
  192.     will run the Universal Converter when you
  193.     type 3 at the DOS prompt.
  194.  
  195.     And your menu system is all finished.
  196. When the computer starts, the menu is
  197. displayed on the screen.  It contains three
  198. choices. At the bottom of the menu is the DOS
  199. prompt.  You can type anything (as usual) at
  200. the prompt, but are invited to type 1, 2 or
  201. 3.  Doing so will start one of the three
  202. batch files, and the program of your choice
  203. will run.  When done with that program, the
  204. menu reappears.
  205.  
  206. ---------------------------------------------
  207.  
  208.                 RENAME A FILE
  209.  
  210. There are many ways to rename a file, but
  211. the easiest at the DOS prompt is to use the
  212. DOS command REN like this:
  213.  
  214.     REN LIZARDS.TXT TOADS.DOC';
  215.  
  216. This renames the file called LIZARDS.TXT so
  217. it will now be known as TOADS.DOC. This works
  218. equally well with .EXE and .COM files, but
  219. they must have the same extension when
  220. renamed or they won't run.
  221.  
  222. ---------------------------------------------
  223.  
  224.                 EASY PRINTING
  225.  
  226. What's the fastest way to print a text file
  227. to paper? At the DOS prompt type:
  228.  
  229.      COPY FILENAME.EXT PRN
  230.  
  231. To print text displayed on your monitor at
  232. any time, if your printer is ready, simply
  233. hold a [Shift] key and simultaneously press
  234. the [Print Screen] key.
  235.  
  236. ---------------------------------------------
  237.  
  238.               CLEAR THE SCREEN
  239.  
  240. If you've been fooling around at the command
  241. line on company time, when the boss comes
  242. around type CLS and press [Enter].  This
  243. blanks the screen.
  244.  
  245. ---------------------------------------------
  246.  
  247.               FOR TOUCH TYPISTS
  248.  
  249. If you are a touch-typist, you may not like
  250. the long stretch the the [Esc] key or other
  251. non-alphanumeric keys.  Here are some
  252. substitutions which work in most programs:
  253.  
  254. [Pause] = [Ctrl] + [S]
  255. [Esc] =   [Ctrl] + [/]
  256. [Break] = [Ctrl] + [C]
  257. [Bksp] = [Ctrl] + [H]
  258.  
  259. and [Ctrl] + [P] at the DOS prompt will turn
  260. on the printer to faithfully reproduce
  261. everything you do at the DOS prompt until you
  262. press [Ctrl] + [P] again.
  263.  
  264. ---------------------------------------------
  265.  
  266.               VARIATIONS OF DIR
  267.  
  268. You probably know the DOS DIR command to
  269. display files. Here are some variations:
  270.  
  271. DIR *.* /P - Shows everything in the current
  272.              directory, but waits for you to
  273.              press a key, if there are more
  274.              files than will fit on the
  275.              screen at one time.
  276.  
  277. DIR A: /W  - Similar to above, but shows all
  278.              files in current directory of
  279.              A: drive, and displays files in
  280.              columns so many more can fit on
  281.              the screen.
  282.  
  283. DIR FILENAME.EXE - Shows only one file, the
  284.              one you have specified, and
  285.              it's size, date, etc.
  286.  
  287. DIR *.DOC - Shows all files in current
  288.             directory which have extension
  289.             of .DOC.
  290.  
  291. DIR /?  -   Only available in MS-DOS version
  292.             5.0 and later.  This lists
  293.             several more DIR options.
  294.             Notice in particular /O which
  295.             will display files in a sorted
  296.             order.
  297.  
  298. ---------------------------------------------
  299.  
  300.              EDIT THE DOS PROMPT
  301.  
  302. You can do neat things with the DOS prompt
  303. itself.  To edit the prompt, type PROMPT
  304. followed by a space, then one or more of the
  305. following codes:
  306.  
  307.   $P   Current drive and path
  308.   $T   Current time
  309.   $D   Current date
  310.   $N   Current drive
  311.   $G   >
  312.   $L   <
  313.  
  314. Type these lines at your DOS prompt or
  315. within your AUTOEXEC.BAT file and get the
  316. following effects:
  317.  
  318. PROMPT $P$G - This is the most common
  319.     variation.  It shows the current
  320.     directory as well as the current drive.
  321.  
  322. PROMPT $T$G$G$G$G - Tells time of day
  323.     followed by >>>>
  324.  
  325. PROMPT YES! $P$G - As you can see, text can
  326.     be inserted verbatim.
  327.  
  328. PROMPT - followed by no parameters restores
  329.     default prompt.
  330.  
  331. ---------------------------------------------
  332.  
  333.               CHANGE TEXT COLOR
  334.  
  335. You can change the color of text at the DOS
  336. prompt and in many programs on CGA, EGA and
  337. VGA systems with the PROMPT command.  For
  338. this to work, ANSI.SYS, NANSI.SYS, TANSI.SYS
  339. or something similar must be installed in
  340. your CONFIG.SYS file. Type this command
  341. (make sure not to use capital letters):
  342.  
  343.     prompt $e[35m$p$g';
  344.  
  345. but you can substitute 35 for one of these
  346. numbers: 33 for amber, 34 for blue, 36 for
  347. gray, 32 for green, 35 for purple, 31 for
  348. red, or 37 for white.  For example, to
  349. type in amber text, type this at your DOS
  350. prompt before you start a program:
  351.  
  352.     prompt $e[33m$p$g
  353.  
  354. This will not work for all programs, because
  355. some take over screen colors when they start.
  356.  
  357. _____________________________________________
  358.                                  end of file.
  359.