Software⏱️ 4 min read📅 2026-06-11

How to Fix: Why does CHKDSK report no problems after a disk read error?

Windows disk error fix: CHKDSK may not detect issues with corrupted files or bad clusters, but running chkdsk with /r can help resolve problems.

Quick Answer: Run chkdsk with /r to scan for and repair bad clusters in the affected file(s).

Recently, when copying files from one drive to another, you noticed a file had a read error. In checking the event logs, you saw a lot of 'The IO operation at logical block address 9837 for Disk was retried.' messages. This indicates that Windows is attempting to recover data from a corrupted disk sector.

Running chkdsk with the /r option should have revealed these issues, but it came back clean. However, the fact that two files were reported as having bad clusters suggests that there may be underlying problems with your disk's file system.

🛑 Root Causes of the Error

  • The primary reason for this issue is that chkdsk only scans the file system and does not actually fix any corrupted data. It may report issues, but it does not guarantee that the problem is fully resolved. Additionally, chkdsk may not always be able to detect all types of disk errors, especially if they are caused by hardware issues rather than software problems.
  • Another possible cause is that the disk's bad cluster issue is not actually a problem with the file system itself, but rather a symptom of a larger issue such as a faulty hard drive or disk head. In this case, running chkdsk may not reveal any issues, even if there are problems with the disk.

✅ Best Solutions to Fix It

Re-Run chkdsk with /r and /f

  1. Step 1: Open a command prompt as an administrator and type 'chkdsk C: /r /f' (assuming the problem drive is C:). This will re-run the chkdsk scan with the /r option to attempt to recover any data that was not fully written to disk, and the /f option to force the scan to complete even if it finds errors.
  2. Step 2: Press Enter to allow the scan to complete. This may take several minutes or longer, depending on the size of the drive and the severity of the errors.
  3. Step 3: Once the scan is complete, check the event logs again to see if any new issues were reported.

Use a third-party disk repair tool

  1. Step 1: Download and install a third-party disk repair tool such as Check Disk Pro or Disk Utility.
  2. Step 2: Insert the problem drive into the computer and open the tool. Follow the on-screen instructions to run a comprehensive scan of the drive.

✨ Wrapping Up

If running chkdsk with /r and /f does not resolve the issue, it may be necessary to use a third-party disk repair tool or seek further assistance from a professional. In any case, backing up your files is essential in case you need to recover data from a corrupted file.

Did this fix your problem?

If not, try searching for specific error codes.

🔍 Search Error Database

❓ Frequently Asked Questions