← All articles

How to Check SSD Health and Temperature in Windows 11

Check SSD health, temperature, wear, and reliability data in Windows 11 using built-in storage information and PowerShell before installing third-party tools.

By ShantanuPublished Updated
  • Applies to Windows 11
  • 3 min read
View article illustration
How to Check SSD Health and Temperature in Windows 11

SSDs can fail without obvious warning, and they still wear out and can develop controller, firmware, temperature, or media errors. Windows 11 can expose some drive-health information without installing a third-party “SSD optimizer.”

Start with Windows storage health

Open Settings > System > Storage > Advanced storage settings > Disks & volumes. Select the drive and open its properties.

On supported NVMe SSDs, Windows may show a health warning or information such as estimated remaining life and temperature. The exact details depend on the drive, controller, and driver.

Check physical disks in PowerShell

Open PowerShell as Administrator and run:

Get-PhysicalDisk

Look at HealthStatus and OperationalStatus. A normal drive typically reports Healthy/OK, although not every storage controller exposes every field correctly.

Read reliability counters

For more detailed information, run:

Get-PhysicalDisk | Get-StorageReliabilityCounter | Format-List

Depending on the drive, Windows may return counters such as temperature, wear, read/write errors, power-on hours, and other reliability data.

If many fields are blank, that does not necessarily mean the drive is broken. Some SATA controllers, USB enclosures, RAID layers, and OEM drivers do not expose all telemetry through the Windows Storage module.

What SSD temperature is “too hot”?

There is no single temperature limit that applies to every SSD. NVMe drives can become quite warm under sustained writes, and the controller may throttle performance before reaching a damaging temperature.

Use the operating range published by the SSD or PC manufacturer instead of applying a random Internet threshold to every model.

Do not disable Windows drive optimization

Windows 11 knows the difference between hard drives and SSDs. The Optimize Drives tool defragments hard disks but uses SSD-appropriate operations such as TRIM/ReTrim for solid-state storage.

Open Start and search for Defragment and Optimize Drives if you want to review the optimization schedule. In normal use, leaving scheduled optimization enabled is the correct choice.

Take health warnings seriously

If Windows reports a storage-health warning, repeated disk errors, or a rapidly increasing error count, back up important files immediately. Health monitoring can warn you about deterioration, but it cannot guarantee how long a drive will continue working.

If a drive is behaving strangely but Windows reports it as healthy, also check the SSD manufacturer’s diagnostic utility and firmware updates. SMART-style health data is useful evidence, not a substitute for a current backup.

Watch for symptoms that matter more than one health percentage

Slow boots, disappearing drives, repeated Event Viewer storage errors, read/write failures, file corruption, or the SSD vanishing after resume deserve attention even if a dashboard still says “Healthy.” Health percentages are vendor-calculated summaries, not guarantees.

If the drive contains important data, make a current backup before running firmware updates or extended diagnostics. Troubleshooting should never be the first copy of your data.

USB enclosures can hide health data

An NVMe or SATA SSD connected through USB may not expose its temperature, wear, or SMART-style counters through the enclosure. If reliability information is blank, the enclosure or bridge chip may be the limitation rather than the SSD itself.

Official references

Microsoft Support — Storage settings in WindowsOfficial reference Microsoft Learn — Get-StorageReliabilityCounterOfficial reference Microsoft Support — Defragment and optimize data drivesOfficial reference