1

Is there a way to run a surface scan of a hard drive using Windows CHKDSK without attempt to repair?

The only option I see for a surface scan is /r which scans the surface but also attempts recovery of bad sectors. If you suspect a bad drive, I wouldn't always necessarily want to attempt recovery, just check the surface if there's any bad sectors, attempt a backup, then try to repair.

I know there's other tools for this, but was wondering if there is a way with CHKDSK?

EDIT: Not sure why downvoted, it's a valid question.

1
  • No there is not, but you can with a 3rd party disk tool like Spinrite 6 using level 2 scan, not free but the best there is.>>>grc.com/sr/spinrite.htm
    – Moab
    Commented Sep 18, 2021 at 20:08

2 Answers 2

2

chkdsk

Checks the file system and file system metadata of a volume for logical and physical errors. If used without parameters, chkdsk displays only the status of the volume and does not fix any errors. If used with the /f, /r, /x, or /b parameters, it fixes errors on the volume. Microsoft Documentation

to check without repairing use chkdsk from the commandline (cmd.exe) WITHOUT parameters:

chkdsk <driveletter>:

Also see social.technet.microsoft they explain the difference between the GUI and commandline invocation chkdsk technet

1
  • 1
    That only scans the file structure not the disk surface.
    – HTWingNut
    Commented Sep 18, 2021 at 14:47
1

It appears there is no way to only scan the disk surface. All functions either scan the file system, or scan the surface but only with option to attempt recovery.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .