0X0000001B

Fix ERROR_SECTOR_NOT_FOUND (0x1B) on Your Hard Drive

Hardware – Hard Drives Intermediate 👁 1 views 📅 Jun 9, 2026

Your drive can't read a specific sector. Usually bad sectors or failing hardware. Quick fix: run chkdsk /r, then check S.M.A.R.T. data. If that fails, it's time for a new drive.

Quick Answer

Run chkdsk /r from an admin command prompt to mark bad sectors and recover readable data. If S.M.A.R.T. shows reallocated sectors, the drive is failing—back up immediately.

Why This Happens

Your hard drive has physical platters where data lives in concentric tracks divided into sectors. When the drive's read/write head can't physically locate a sector—either because the platter surface degraded (bad sector), the head alignment drifted, or the firmware lost the sector's location—Windows throws error code 0x0000001B. I've seen this most often on older spinning hard drives (HDDs) after a power surge or a drop, but it can hit SSDs too if the NAND flash wears out. Usually, you'll get a pop-up like "The drive cannot find the sector requested" when trying to open a file or during a system backup.

This isn't a software glitch you can fix by reinstalling Windows. The drive hardware is struggling. Here's how to handle it.

Fix Steps

  1. Back up everything you can right now. Before messing with repairs, copy important files to another drive. Use robocopy for large folders: robocopy C:\source D:\backup /E /R:3 /W:5. This skips unreadable files and keeps going—unlike File Explorer, which halts on one error.
  2. Run chkdsk /r from an admin command prompt. Open Start, type "cmd", right-click Command Prompt, choose "Run as administrator". Then type chkdsk C: /r (replace C: with your drive letter). It'll ask to dismount the volume—say Y, then let it run. This can take hours on a large drive. What it does: locates bad sectors, marks them so Windows won't use them again, and tries to recover readable data. Don't interrupt it.
  3. Check S.M.A.R.T. status. After chkdsk finishes, open PowerShell as admin and run Get-PhysicalDisk | Select-Object FriendlyName, MediaType, HealthStatus, OperationalStatus. If HealthStatus shows "Warning" or "Unhealthy", the drive is failing. For a deeper look, use a free tool like CrystalDiskInfo (I prefer it over built-in tools). Look for "Reallocated Sectors Count"—if it's above 0, the drive is reallocating bad spots. Normal drives have 0. Anything over 100 means replacement soon.
  4. Test with manufacturer diagnostics. Western Digital has Data Lifeguard Diagnostic, Seagate has SeaTools. Download the right one for your drive model. Run the extended test. If it fails, the drive is done.

If That Fails

If chkdsk hangs or chkdsk completes but the error persists, your drive has physical damage that software can't fix. Don't run chkdsk more than once—it can further stress a dying drive. Here's what to try instead:

  • Use a data recovery tool like Recuva or R-Studio. These can read raw sectors and piece together files even when Windows can't see the structure. Expect slow speeds and partial restores.
  • Freeze the drive trick (last resort). Put the drive in an anti-static bag, seal it, and stick it in the freezer for 2 hours. Reconnect quickly and copy files. This can temporarily contract internal parts and allow one more read. Works maybe 20% of the time, but when it does, you'll get critical data off. I've saved a client's wedding photos this way.
  • Replace the drive. For HDDs, buy an SSD—they're cheap now and faster. For SSDs, warranty claim if within 3–5 years. Otherwise, get a new one.

Prevention Tips

  • Monitor S.M.A.R.T. monthly. Use Task Scheduler to run wmic diskdrive get status weekly and email you results. If it says "Bad", swap the drive before data vanishes.
  • Don't defrag SSDs. It wears them out. Windows 10/11 handles this automatically, but if you use third-party tools, turn off defrag for SSD drives.
  • Keep drives cool. Heat kills bearings on HDDs. Ensure your PC case has airflow. For external drives, don't stack them on top of each other.
  • Use a UPS. A power drop during a write corrupts sectors. A $50 UPS protects against that. Skip it if you're on a laptop with a battery.

If you're stuck, drop the drive model and error details in a comment. I've helped folks with 0x1B on everything from 10-year-old Seagate Barracudas to Samsung 870 EVOs. You're not alone.

Was this solution helpful?