chkdsk Command with Examples

January 5, 2023

Introduction

The chkdsk command (short for "Check Disk") is a Windows utility that scans disks and reports on the state of the partitions and the stored data. Use chkdsk to repair drives and recover data from the damaged drive sectors.

This tutorial shows you how to use chkdsk to detect errors and repair your Windows drives.

chkdsk command with examples.

Prerequisites

  • Windows machine.
  • User account with admin privileges.
  • Access to Command Prompt or PowerShell.

Note: For the command that performs a similar function in Linux, refer to How to Use fsck Command.

chkdsk Syntax

The chkdsk command can take one or more arguments. The basic chkdsk command syntax is:

chkdsk [volume] [switches]

Volumes and switches are optional. Enter the base command to start the scan:

chkdsk

When you ran chkdsk on its own, it scans the drives in read-only mode.

Running chkdsk without arguments in PowerShell.

However, running chkdsk without the /F parameter on an active partition may produce false positives, so this method of partition scanning is not recommended.

chkdsk Options

Expand and customize the chkdsk functionality by providing additional command-line arguments. The table below contains the list of the available options.

Note: The table mentions online and offline scanning. In the chkdsk context, an online scan is performed while the volume is still mounted. An offline scan dismounts the volume to fix errors.

ArgumentDescription
[volume]Specify a volume for chkdsk to scan. Follow the volume letter with the : symbol (e.g., C:).
/BClear the list of bad clusters, re-scan the drive for errors, and recover readable information. Use this switch only with NTFS partitions.
/CSpeed up the scanning process by skipping over folder structure cycles. Use the switch with NTFS partitions only.
/FFix errors on the disk.
/forceofflinefixPrevent online repair and force offline repair of all errors. Use the switch only with NTFS partitions alongside the /scan option.
/ISkip routine indexing checks and perform a fast drive scan. Use the switch with NTFS partitions only.
/L:[size]Change the log file size. If you do not state the size, /L prints the current file size. Use the switch with NTFS partitions only.
/offlinescanandfixScan and fix the volume offline.
/perfSpeed up the scan by using more system resources. Use the switch only with NTFS partitions alongside the /scan option.
/RScan for bad sectors and recover non-corrupted information. If the /scan option is not included, chkdsk also attempts to fix the disk errors.
/scanRun an online scan. Use this switch with NTFS partitions only.
/spotfixImmediately fix the errors. Use the switch with NTFS partitions only.
/VOn FAT and FAT32 partitions, the option shows the paths of all the files on the disk. On NTFS partitions, it shows cleanup messages.
/XForce-dismount the drive and fix any errors on the disk.
/?Show chdsk help.

How to Run chkdsk

chkdsk is a command-line interface (CLI) tool available in Windows Command Prompt and Windows PowerShell. The following steps show how to access the CLI with the administrative privileges to run the command.

1. Click Start.

2. Type PowerShell. The Windows PowerShell item appears in the list of programs.

Note: To use chkdsk in the Command Prompt, search for Command Prompt instead of PowerShell.

3. Select Run as Administrator in the pane on the right side.

Starting a PowerShell session as an administrator.

The PowerShell window opens.

The PowerShell window.

chkdsk Examples

Combining the available switches with the chkdsk command helps narrow the scan target and perform custom scans. The following are examples of using the chkdsk command.

  • Scan the C drive for bad sectors and recover the readable information:
chkdsk C: /R

If chkdsk cannot lock the drive, it displays the following message.

Scanning drive C with chkdsk

Type Y and press Enter. Then restart the computer to complete the scan.

  • Run an online scan of the NTFS-formatted C partition but force chkdsk to perform all the fixes offline:
chkdsk C: /scan /forceofflinefix

The output show the scan stages.

Performing an online scan of drive C with chkdsk.

If the scan finds any errors, they are repaired after the drive is dismounted. If there are no errors, chkdsk displays a report.

A chkdsk report stating no problems were found.
  • Scan and fix drive D bad sectors online, using the maximum allowed amount of system resources.
chkdsk D: /R /scan /perf
  • Scan for disk errors on drive D and force the drive to dismount if necessary.
chkdsk D: /X 
  • Perform an online scan of drive C for bad sectors, ignoring the previous bad sector records.
chkdsk C: /B /scan

Conclusion

This tutorial presented the chkdsk command, a Windows CLI utility for scanning and repairing disks. After reading it, you should know how to scan and recover bad sectors and fix disk errors on your Windows system.

Learn more about data corruption by reading What is Data Corruption and Can You Prevent it?

Was this article helpful?
YesNo
Marko Aleksic
Marko Aleksić is a Technical Writer at phoenixNAP. His innate curiosity regarding all things IT, combined with over a decade long background in writing, teaching and working in IT-related fields, led him to technical writing, where he has an opportunity to employ his skills and make technology less daunting to everyone.
Next you should read
How to Set Environment Variable in Windows
January 26, 2021

Environment variables are key-value pairs a system uses to set up a software environment. In this tutorial, we will cover different ways you can set, list...
Read more
DOS to Unix: Commands and Examples
October 12, 2020

Files created in DOS/Windows use carriage return and line feed for line endings. However, files in Unix/Linux solely use line feed. Learn how to transfer...
Read more
How to Install winget (Windows Package Manager)
April 21, 2022

Winget installs and manages applications using a CLI, similar to the apt package manager in Linux. In this tutorial, you will learn to install and use...
Read more
How to Change or Reset Administrator Password on Windows Server
July 7, 2019

If you are routinely changing a known administrator password, you can use the Windows user interface. However, when changing an...
Read more