Follow
Windows

How to Use CHKDSK in Windows 11

Richard
Written by
Richard
Aug 8, 2022 Updated Apr 29, 2026 3 min read
How to Use CHKDSK in Windows 11

This guide shows you how to use the chkdsk command in Windows 11 to keep your hard drive healthy.

Why use CHKDSK?

Your computer stores data on your hard drive. Sometimes, files or sectors on that drive get corrupted. chkdsk (short for “Check Disk”) scans your drive to find these issues and attempts to fix them so your computer runs smoothly.

What happens when done?

Once the scan finishes, Windows will report any errors it found and tell you if it was able to repair them. This helps prevent crashes and data loss.

WARNING: Always back up your important files before running chkdsk. While the tool is designed to fix errors, the repair process can sometimes lead to data loss if the drive is failing physically.

Run CHKDSK from File Explorer

If you prefer using a visual menu rather than typing commands, follow these steps:

  1. Open File Explorer or press the Windows key + E on your keyboard.
  2. Select This PC from the left sidebar.
  3. Right-click on the drive you want to check and select Properties.
Right-click menu to run CHKDSK on Windows 11 drive
  1. Go to the Tools tab.
  2. Click the Check button.
Drive properties window for CHKDSK in Windows 11

A window will pop up asking if you want to scan the drive. Follow the on-screen prompts to start the process.

Scanning drive for errors using CHKDSK in Windows 11

Run CHKDSK from Command Prompt (Admin)

For more control, you can use the command line. Note: This requires admin privileges.

  1. Click the Start button and type cmd.
  2. Right-click Command Prompt and select Run as administrator.
  3. Type the following command to check and fix errors (replace C: with your actual drive letter):

chkdsk C: /f

Understanding CHKDSK Parameters

The chkdsk tool uses switches to perform different tasks. Here are the most common ones:

  • /f: Fixes errors on the disk.
  • /r: Locates bad sectors and recovers readable information. This includes the /f function.
  • /x: Forces the volume to dismount first if necessary.
  • /scan: Runs an online scan on NTFS drives.

Troubleshooting and Logs

If you need to see the results of a previous scan, you can check the Event Viewer. Look under Windows Logs > Application and filter for the source Chkdsk. This helps you understand if the tool found logical file system errors or physical bad sectors.

Summary

The chkdsk tool is a powerful utility for identifying and fixing logical file system errors on your Windows 11 drive. By using the correct parameters like /f or /r, you can maintain drive health and prevent data issues. Always remember to run the command prompt as an administrator and back up your data before starting any deep repairs.

How long does CHKDSK take to run on Windows 11?

The time depends on your drive size, speed, and the number of errors. A quick scan might take minutes, while a deep scan with the /r parameter on a large, slow hard drive can take several hours. It is best to run it when you do not need the computer.

Is it safe to interrupt CHKDSK?

It is generally not recommended to interrupt the process once it has started. Stopping it abruptly while it is writing to the file system metadata could potentially lead to further corruption or data loss. If possible, let the process complete fully before turning off or restarting your computer.

Can I run CHKDSK on an SSD?

Yes, you can run CHKDSK on an SSD. However, it is usually unnecessary to run the /r parameter on an SSD, as SSDs handle bad sectors differently than traditional hard drives. Running a basic scan for logical file system errors is perfectly safe and helpful for maintaining system health.

Was this guide helpful?

Tags: #Windows 11
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

2472 articles → Twitter

📚 Related Tutorials

How to Open Windows Terminal as Admin Automatically
Windows How to Open Windows Terminal as Admin Automatically
How to Change Tab Colors in Windows Terminal
Windows How to Change Tab Colors in Windows Terminal
How to Open PowerShell in Windows 11
Windows How to Open PowerShell in Windows 11
How to Add or Remove Favorites in Windows 11 File Explorer
Windows How to Add or Remove Favorites in Windows 11 File Explorer

Leave a Reply

Your email address will not be published. Required fields are marked *