home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / ibm1 / pcwiz01.arj / CHKDSK.INS < prev    next >
Text File  |  1991-09-25  |  3KB  |  75 lines

  1. CHKDSK    Used to determine information on the amount
  2.           of disk space and memory usage/availability,
  3.           as well as a diagnostic and correctional tool
  4.           for resolving errors in the system's file
  5.           allocation table (FAT).
  6.  
  7. Format:   CHKDSK [FileSpec] [/F][/V]
  8.  
  9.   /F  allows errors found in the FAT to be corrected.
  10.  
  11.   /V  displays listing of all FILES and their PATHS.
  12.  
  13. Example:             CHKDSK
  14.  
  15.    Performs a check of the ENTIRE disk on the CURRENT
  16.    drive and reports any error(s) detected and displays
  17.    status report on disk and memory usage/availability.
  18.    (Will NOT make corrections for FAT errors detected.)
  19.  
  20. Example:            CHKDSK /F
  21.  
  22.    Same as the above, except that if errors are found
  23.    will ask if you want the corrupted FAT data to be
  24.    converted to files which will free-up space on the
  25.    disk. (Under MOST circumstances, it is advisable to
  26.    answer [Y]es and be content to have the corrupted
  27.    data placed in a file in order to resolve the error
  28.    existing in the FAT. This data will be placed in
  29.    file(s) named FILE0000.CHK, FILE0001.CHK, ect. and
  30.    can be accessed using a word processing program or
  31.    viewed on screen using the TYPE command. If you
  32.    determine that the data is useless in its current
  33.    state it can be deleted using the DEL command or
  34.    you can reconstruct it using your word processor
  35.    or the DOS line editor, EDLIN.)
  36.  
  37.  
  38. Example:            CHKDSK *.*
  39.  
  40.    Same as using CHKDSK without parameters, except it
  41.    also provides a report of files that are stored in
  42.    non-contiguous clusters on the disk. If there are
  43.    a large number of non-contiguous clusters reported
  44.    and you notice a decrease in the system's speed and
  45.    performance, you can eliminate this condition by
  46.    using a de-fragmenting or "disk optimizing" program
  47.    such as Norton Utilities' SPEED DISK.
  48.  
  49.  
  50. Example:         CHKDSK /V >LPT1
  51.  
  52.    In addition to the normal information that is
  53.    provided by the CHKDSK command, the /V switch will
  54.    provide a detailed listing of ALL files that are
  55.    contained on the ENTIRE disk drive according to the
  56.    subdirectory in which they are filed. Each file
  57.    will also include the directory path that is a part
  58.    of its name (e.g., \123\DATA\BUDGET.WK1) which is
  59.    never reported in a normal directory listing using
  60.    the DIR command. Since this listing will normally
  61.    be quite large and will scroll by rapidly on your
  62.    monitor screen, you can have it REDIRECTED to your
  63.    lpt1 printer by including the >LPT1 parameter.
  64.  
  65. Example:         CHKDSK /V >DIR.LST
  66.  
  67.    Same as above, except the listing information will
  68.    be placed in a text file named DIR.LST and filed
  69.    in the CURRENT directory. This file can later be
  70.    printed by using the COPY or PRINT command or can
  71.    be viewed on the screen using the TYPE command or
  72.    your word processor. (When using the TYPE command
  73.    include the pipe |MORE after the command to stop
  74.    the on-screen scrolling.)
  75.