0X80000016

Fix STATUS_VERIFY_REQUIRED (0X80000016) Hard Drive Error

Hardware – Hard Drives Intermediate 👁 4 views 📅 Jul 8, 2026

This error means Windows can't read your hard drive. It often pops up when you try to open files or boot up. Here's how to fix it step by step.

When Does This Error Usually Show Up?

You're sitting at your PC, maybe Windows 10 or 11, and suddenly you can't open a file. Or worse, your computer won't boot at all. Instead, you get a blue screen with STATUS_VERIFY_REQUIRED (0X80000016). I've seen this happen most often when copying large files from an external USB drive to an internal one. Or when Windows tries to read a file that's partly corrupted. It's not a virus—it's your hard drive telling Windows "Hey, I can't read this spot, try again." But Windows doesn't try, it just gives up and throws this error.

What's Really Going On?

Think of your hard drive as a filing cabinet. Each file is stored in a specific drawer (sector). Over time, some drawers get damaged—maybe from age, a power surge, or a bump if it's a laptop. When Windows tries to open a file sitting in a bad drawer, the drive controller says "I need to verify this data before I can give it to you." That's the verify process. But if the drawer is too damaged, the verify fails, and Windows stops with error 0X80000016.

It's not always bad sectors though. Sometimes the file system itself gets messed up—like a torn index card. chkdsk can fix that.

The Fix: Step by Step

Don't panic. Most times, this error is fixable without buying a new drive. But there's a catch: if the drive is physically dying, these steps might make it worse. So I'll tell you when to stop.

Step 1: Run chkdsk from Command Prompt

  1. Press Windows Key + X and choose "Command Prompt (Admin)" or "Windows Terminal (Admin)". If you see a popup asking for permission, click Yes.
  2. Type this command and hit Enter:
    chkdsk C: /f
    (Replace C: with the drive letter where the error happens. If it's your boot drive, you'll see a message asking if you want to schedule the check for next restart. Type Y and press Enter.)
  3. Wait. This can take 10-30 minutes depending on drive size. chkdsk will scan and fix file system errors. You'll see messages like "Windows has made corrections to the file system."
  4. If you scheduled it for restart, reboot now. Windows will run chkdsk before the desktop loads. It'll look like a black screen with white text counting through stages 1-5. Let it finish.

What to expect: After chkdsk finishes, try opening the file or copying it again. If the error is gone, you're done. If not, move to Step 2.

Step 2: Check for Bad Sectors

If the file system is fine but the error persists, we need to check for physical damage.

  1. Open an admin Command Prompt again (same way as Step 1).
  2. Type:
    chkdsk C: /r
    (Again, replace C: with your drive letter.)
  3. Hit Enter. If it's your system drive (C:), say yes to schedule for next reboot. Then restart.
  4. chkdsk /r does a deeper scan. It finds bad sectors, marks them as bad so Windows won't use them, and tries to recover readable data. This takes longer—could be hours for a 1TB drive.

Real talk: If chkdsk /r finds a lot of bad sectors (more than 5-10), your drive is dying. Back up your important files now. The /r scan gives you a temporary bandage, not a cure.

What If You Can't Boot at All?

If Windows won't start and you see this error on a black screen before the desktop, here's the alternate path:

  1. Get a Windows installation USB or DVD. You can create one from another computer using Microsoft's Media Creation Tool (free).
  2. Boot from that USB. You'll need to press F12 or Esc at startup to choose the boot device. Exact key varies by brand—look for "Boot Menu" on screen.
  3. On the Windows Setup screen, click "Repair your computer" (bottom-left corner).
  4. Choose "Troubleshoot" > "Advanced Options" > "Command Prompt".
  5. Now run the commands from Step 1 and 2 above. But here's the trick: your boot drive might not be C: anymore. In the recovery environment, it's often D: or E:. Type notepad at the prompt, then in Notepad go to File > Open to see what drive letter your Windows files are on. Close Notepad when done.
  6. Run chkdsk on that correct drive letter.

Still Not Fixed? Check Your Drive's Health

If chkdsk finds nothing wrong but the error keeps coming back, the problem might be the drive itself or the cable.

Check SMART Data

SMART is like your drive's built-in health monitor. You can read it with free tools:

  1. Download and run CrystalDiskInfo (it's free, no install needed).
  2. Look at the status for your drive. If it says "Caution" or "Bad", replace the drive soon.
  3. Also check the raw values for "Reallocated Sectors Count" and "Current Pending Sector Count". If either is not zero, the drive is degrading.

Check Cables

For internal drives (desktop):

  1. Shut down the PC, unplug power, open the case.
  2. Unplug and replug both ends of the SATA data cable (drive and motherboard).
  3. If you have a spare SATA cable, swap it out. They wear out and cause errors like this.
  4. Also check the power cable—make sure it's snug.

For external USB drives: try a different USB port, preferably USB 3.0 (blue) or USB-C. Also try a different cable. USB cables fail more often than you'd think.

If All Else Fails: Data Recovery

At this point, if the error still shows up, the drive is likely failing physically. Don't run any more chkdsk scans—they can push a dying drive over the edge.

Your next step:

  1. Buy an external hard drive or use cloud storage for backup.
  2. Use file recovery software like Recuva or EaseUS Data Recovery Wizard. They can often read data from drives that Windows can't.
  3. Copy your files to the new drive. Expect some files to be unreadable—those are the ones sitting on bad sectors.
  4. Replace the dead drive. If it's your system drive, you'll need to reinstall Windows on the new one.

One last thing: If the data is super important (family photos, work files), stop all DIY attempts and call a professional data recovery service. They have clean rooms and special tools. But it'll cost you—anywhere from $300 to $3000 depending on the damage.

That's it. You've done what I'd do. Good luck.

Was this solution helpful?