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 volumechkdsk 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 scanRepair-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
The difference between updates and upgrades
A video to explain the terms upgrade, update, quality update and functionality updateWindows - How to run a memory test to detect faulty RAM
Windows - How to run a memory test to detect faulty RAMFix an Active Directory sign-on approval relationship error
How to fix a sign-on approval relationship error in Active DirectoryHow to create a multiboot USB key with the Ventoy tool
It's useful to have a multiboot USB stick containing operating system images or troubleshooting tools that you can boot from if you need toHow to clean and repair the Windows Component Store
The c:\Windows\Installer folder contains installation files (in MicroSoft Installer, MSI, format) for software installed on your machine5 ways to achieve Windows recovery (WinRe) on Windows 10 and 1
5 ways to achieve Windows recovery (WinRe) on Windows 10 and 11
Follow me on
Support me
Last content
Powershell - Testing network connectivity and port accessibility
Powershell - Display network connections (equivalent to netstat)
Powershell - Testing name resolution (equivalent to nslookup)
Powershell - View and manage DNS configuration of network interfaces
Powershell - Managing IP configuration of network interfaces
Powershell - Managing the status and configuration of network interfaces
Powershell and the Left Hand Side
Powershell - Managing disks, partitions and volumes