home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast.iso / diskutil / verdisk.doc < prev    next >
Text File  |  1994-03-07  |  977b  |  25 lines

  1.     VERDISK is a quick way to check on the condition of disks, to
  2. give warning of impending failure.
  3.  
  4.     It uses the PC disk I/O call (INT 13) to verify the readability of
  5. each sector on the disk.  All verify errors are reported, indicating the
  6. error type (drive seek, controller, CRC, missing sector, missing addr mark),
  7. the side, track and sector, and the number of unsuccessful retries, up
  8. to a maximum of 5.  The batch ERRORLEVEL is also set as a return code.
  9.  
  10.     All PC and AT  5.25" floppy formats and IBM hard disks are
  11. supported.  The IBM 8" floppy formats are not supported.  If you have
  12. hard disks then DOS device B: must be BIOS unit 80H, C: must be 81H,
  13. and so on.
  14.  
  15. Syntax:  VERDISK d:
  16.  
  17. Where d: is the drive specifier.
  18.  
  19. The ERRORLEVEL is OR'ed with    to indicate
  20.   1        recoverable disk error (successful retry)
  21.   2        non-recoverable error (unsuccessful after 5 retries)
  22.   4        non-supported disk type
  23.   8        invalid drive spec
  24.  
  25.