home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PROGRAMS / UTILS / HARDDISK / HDTEST2.ZIP / CLEANISH.EXE / CLEANIT.DOC next >
Encoding:
Text File  |  1989-03-02  |  4.2 KB  |  95 lines

  1.           
  2.           Documentation for CLEANIT               Copyright 1988, P. R. Fletcher
  3.           __________________________             _______________________________
  4.           
  5.           
  6.                                        INTRODUCTION
  7.                                        ____________
  8.           
  9.           CLEANIT is a very simple program, which was designed to make it easier
  10.           to use the special cleaning diskettes which are available from many
  11.           sources to clean the head(s) of your disk drives. These diskettes come
  12.           with instructions which generally read, in part (e.g.): "Engage heads
  13.           approximately 30 seconds". Without a program such as CLEANIT, this is
  14.           much easier said than done, because any attempt to use a DOS command
  15.           to "engage heads" on the cleaning disk results in an immediate abort
  16.           when DOS determines that it has no valid data on it. CLEANIT uses INT
  17.           13 to repeatedly attempt reads from the disk, while stepping from
  18.           track to track, thus effectively cleaning the heads but avoiding
  19.           localized wear on the disk.
  20.           
  21.           CLEANIT is Copyright by Peter R. Fletcher, 1988. All rights reserved.
  22.           The program was written in C, compiled by the Microsoft C compiler
  23.           (Version 5.10) using its "small" memory model, and linked with code
  24.           from the distributed Microsoft C object libraries using the Microsoft
  25.           LINK program (Version 3.65). Portions of the distributed program are
  26.           consequently Copyright by Microsoft Corp., 1985-1988. All rights
  27.           reserved. These portions are used under the terms of a license from
  28.           Microsoft Corp. This program and its documentation may be freely
  29.           copied for non-commercial use, provided that neither is modified in
  30.           any way. Commercial use of the program without the author's prior
  31.           written permission is strictly prohibited - such use may also require
  32.           the payment of a fee.
  33.           
  34.           Documentation for CLEANIT               Copyright 1988, P. R. Fletcher
  35.           __________________________             _______________________________
  36.           
  37.           
  38.           
  39.                                     USING THE PROGRAM
  40.                                     _________________
  41.           
  42.           1) Follow the instructions that came with your cleaning diskette to
  43.           prepare it for use. Note for how long the diskette manufacturer
  44.           suggests the drive heads should "engage" the diskette (this time is
  45.           usually between 20 and 60 seconds). Insert the diskette in the drive
  46.           to be cleaned.
  47.           
  48.           2) With CLEANIT.EXE either in your default directory or in your PATH,
  49.           give the command "CLEANIT [dev:] [time]", where "dev" is the single-
  50.           letter device name of the drive whose heads you wish to clean, and
  51.           "time" is the (decimal) number of seconds for which the heads are to
  52.           be "engaged". The two parameters may appear in either order, and
  53.           either or both may be omitted. In the latter case, the program will
  54.           use its defaults, which are drive A: and 30 seconds, respectively. The
  55.           maximum allowed value for time is 120 seconds - if a longer time is
  56.           specified, 120 seconds will be used.
  57.           
  58.           3) Wait for the program to time out and return you to the DOS prompt,
  59.           then remove the cleaning diskette and put it away.
  60.           
  61.           CLEANIT can only be used on drives which can be accessed via the
  62.           normal BIOS INT 13 route - drives which require special drivers to
  63.           be loaded in CONFIG.SYS may not respond correctly (or at all) to the
  64.                                   ___                                         
  65.           program.
  66.           
  67.           Comments, suggestions, etc. may be addressed to the author at:
  68.           
  69.                    1515 West Montgomery Avenue
  70.                    Rosemont
  71.                    PA 19010
  72.                    U.S.A.
  73.           
  74.  
  75.  
  76.  
  77.  
  78.  
  79.  
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.           
  98.           
  99.                                           Page 2                                
  100.