Check storage health in Windows before running repair commands
Separate physical-disk health evidence from volume/file-system repair by checking what Windows Storage reports before using CHKDSK repair switches.
- Back up important data first if the drive is disappearing, making abnormal noises or already reports health warnings.
- Run Get-PhysicalDisk and identify the correct device by model/size.
- For supported devices, query storage reliability counters and preserve any warning/error values.
- Check Get-Volume separately so a file-system/volume state is not confused with physical-disk health.
What this problem usually means
Windows Storage cmdlets distinguish physical disks from volumes. Get-PhysicalDisk can expose operational/health status, while Get-StorageReliabilityCounter can expose provider-supported counters such as temperature, errors, wear and power-on time. Availability varies by device/provider, so missing counters are not proof that a drive is healthy.
Work from the narrowest fix to the broader one.
Inventory physical disk health without changing it
Low riskWhy this belongs here: Get-PhysicalDisk is read-oriented and shows disks visible to the Storage management provider.
- Open PowerShell.
- Run Get-PhysicalDisk.
- Match the disk by friendly name/model/size and record OperationalStatus and HealthStatus.
- Do not initialize, format or remove a disk based only on this inventory.
Get-PhysicalDiskRead reliability counters when the device exposes them
Low riskWhy this belongs here: Microsoft documents reliability counters for temperature, errors, wear and time-in-use on supported storage devices.
- Pipe the identified PhysicalDisk object to Get-StorageReliabilityCounter.
- Record counters that are actually populated.
- Compare suspicious results with the SSD/HDD/PC manufacturer diagnostic before destructive repair.
Get-PhysicalDisk | Get-StorageReliabilityCounterWhen this guide stops being the right path
If the disk reports Warning/Unhealthy, repeatedly disappears, cannot be detected reliably or contains irreplaceable data, stop nonessential write-heavy repair and prioritize backup/vendor or data-recovery assessment.
If the problem is still not fixed
Use the file-system/CHKDSK path only when the physical disk remains reliably detected and the evidence points to volume/file-system integrity.
Sources reviewed for this page
Primary technical guidance is preferred. A source supports the scope stated here; it does not imply that every possible cause is covered.