The check disk and its new features since Windows 8

To support me, you can subscribe to the channel, share and like the videos, disable your ad blocker or make a donation. Thank you!

Hello,

The disk analyser (chkdsk) is used to check and correct errors on the file system. The file system corresponds to the foundations on which data is stored. Since Windows Server 2012 and Windows 8, Microsoft has reduced the downtime associated with checking a disk and increased the speed of analysis.

Command lines video

# Run a scan (minor issues are fixed and a report is generated listing uncorrected issues)
chkdsk e: /scan
# Repair the problem (switch to offline mode)
chkdsk e: /spotfix
# Performs an offline scan and repair on the volume
chkdsk e: /offlinescanandfix
# Runs a scan using more system resources. This can have a negative impact on the performance of other tasks.
chkdsk e: /scan /perf
### In PowerShell
# Run a scan
Repair-Volume F -Scan
# If errors are encountered, run the following command for an offline repair.
Repair-Volume F -Spotfix
# Scan and repair the volume (switch to offline if necessary)
Repair-Volume F -OfflineScanAndFix
# Remotely scan and repair the volume (switch to offline if necessary)
Repair-Volume F -OfflineScanAndFix -Cimsession srv-2019

Video : The check disk and its new features since Windows 8

Related links