Windows 11 ships with a little-known but potentially vital storage health monitor buried in its Settings app. Press a few keys, dig into the right menu, and you can see at a glance whether your NVMe SSD still has enough life left to trust with your data. But if your internal drive connects via SATA—whether it's a traditional hard disk or a modern solid-state drive—that same panel shows nothing actionable at all.

This gap isn't new, but it's been under‑reported since the feature first appeared in 2021 with Windows 11 version 21H2. With the 2025 rollout of Windows 11 24H2 and the growing number of users still running SATA drives, the limitation deserves a fresh look.

The Built-in Health Check Starts and Stops at NVMe

Open the Settings app (Win + I), then navigate to SystemStorageAdvanced storage settingsDisks & volumes. Click on any drive, select its properties, and you'll see a panel titled Drive health. For supported hardware, the section reports three key metrics: estimated remaining life (as a percentage), available spare capacity, and current temperature.

Try the same with a SATA SSD or a spinning hard drive, and you get nothing—no life estimate, no spare pool, no temperature reading. The heading exists, but the data fields are empty. Microsoft has never officially documented the omission, but the behaviour is consistent across every public Windows 11 build, from the original release through the 2024 feature update (24H2).

Why? It comes down to how Windows obtains the raw health telemetry. The Disks & volumes page relies on a dedicated NVMe storage driver (stornvme) that exposes a set of standardised self-monitoring counters defined by the NVM Express specification. These counters map cleanly to the "remaining life" and "available spare" signals that the Settings UI renders. SATA drives, even those that support the decades‑old S.M.A.R.T. protocol, don't present the same uniform interface through the Windows storage stack. The OS doesn't translate generic S.M.A.R.T. attributes into the same health model, so the panel stays blank.

In short, the feature was engineered for modern NVMe drives only, and Microsoft hasn't yet built the plumbing to show equivalent data for SATA devices.

What This Means Day to Day

If you own an NVMe SSD

You already have access to a free, no-install drive health snapshot. The panel won't replace a dedicated diagnostic suite, but it's a fast sanity check. Look for an Estimated remaining life close to 100%, and an Available spare well above 10%. A sudden drop in either metric may give you enough warning to migrate data before the drive fails. The feature even ties into Windows' built‑in device health alerts, though those first surfaced in early 2023 and still seem inconsistent.

If you own a SATA SSD or hard drive

The Settings panel tells you nothing about the physical health of your drive. You could be running a seven-year-old SSD with critically worn NAND cells, or a mechanical drive with thousands of reallocated sectors, and Windows 11 will not surface that information natively. The operating system may still flag file system errors or I/O hangs, but those are reactive responses to existing corruption, not preventative warnings.

For IT professionals managing fleets, this blind spot can be especially costly. You can't script a quick health check through Get-PhysicalDisk or Get-StorageReliabilityCounter for SATA drives in the same way you can for NVMe hardware. Without third‑party tools, a SATA drive can go from "appears fine" to "unmountable" with zero built‑in notice.

For developers and power users

The underlying API story adds a twist. Windows 11 does collect S.M.A.R.T. data from SATA drives—tools like CrystalDiskInfo prove it daily. The OS exposes a subset of that data through WMI and PowerShell cmdlets, but the health model required by the Settings UI never got a SATA-friendly adapter. If you're building your own monitoring dashboard, you can pull raw S.M.A.R.T. values via MSStorageDriver_ATAPISmartData or invoke StorageReliabilityCounter, but you'll need to interpret the numbers yourself. No official Microsoft library maps them to the "estimated life" or "spare capacity" fields that the NVMe path delivers for free.

How We Arrived at an NVMe‑Only World

The logic behind the gap becomes clearer when you trace two parallel timelines: the rise of NVMe in consumer hardware and Microsoft's quiet pivot toward modern device health.

NVMe SSDs became mainstream around 2018‑2019, and by the time Windows 11 was being designed in 2020‑2021, most new PCs sold with an NVMe boot drive. Microsoft rightly assumed that the majority of its future telemetry would flow from NVMe hardware. The NVMe spec's standardised health log pages (smart / health information) gave Redmond a clean, vendor‑agnostic way to surface drive endurance. It built the Settings panel around that assumption.

Meanwhile, Windows 10 never included a native drive health panel—users depended on Device Manager, PowerShell, or third‑party utilities. Windows 11's Disks & volumes page was a new surface, and the team apparently chose to launch it supporting the most future‑proof protocol rather than delay the feature to retrofit a SATA solution.

There is also a subtle architecture concern. Reliable SATA health monitoring often requires querying S.M.A.R.T. attributes that differ between manufacturers and even firmware versions. Normalising that data into a consumer‑friendly "percentage life remaining" isn't impossible—it's what tools like Hard Disk Sentinel do daily—but it does require a database of attribute thresholds that Microsoft may not want to maintain inside the operating system.

Finally, SATA support might have arrived in a subsequent Windows 11 release if not for shifting priorities. The Storage settings team has focused more on OneDrive integration and cloud storage management over the past two years. No public roadmap has ever promised SATA drive health in Settings, and the feature's quiet existence suggests it's been shelved.

What to Do Now

For NVMe owners

You don't need to change a thing, but don't let the built‑in tool be your only guard. NVMe drives can still fail catastrophically from controller bugs or power faults that don't degrade endurance counters. Set up periodic backups and, if your drive vendor offers one, install their official health utility for additional metrics.

For SATA SSD and hard drive owners

You have several solid fallback options, none of which require spending money:

  1. CrystalDiskInfo – The gold standard for S.M.A.R.T. interpretation. Install the standard edition (don't fall for bundled adware), and you'll get a traffic‑light health status plus detailed attribute tables. It works on Windows 11 with zero configuration.
  2. Manufacturer software – Samsung Magician, Western Digital Dashboard, Crucial Storage Executive, and similar tools all report health tailored to their own hardware. They often add firmware update checks, over‑provisioning controls, and temperature graphs.
  3. PowerShell for quick checks – Run Get-PhysicalDisk | Select FriendlyName, HealthStatus in an elevated terminal. A "Healthy" result only means the disk hasn't thrown a catastrophic flag; it doesn't replace a S.M.A.R.T. inspection, but it can spot a disk that has already failed.
  4. Proactive data migration – If you're still booting from a SATA SSD or hard drive, even a healthy one, consider moving to an NVMe drive on any desktop or laptop that supports it. The Settings health tool is just one reason—NVMe drives are faster, cooler, and increasingly priced at parity with SATA models.

For IT administrators

Group Policy can't enable SATA health in the Settings UI, so don't bother hunting for a secret switch. Instead, script your monitoring. The PowerShell cmdlet Get-StorageReliabilityCounter returns wear‑related data for NVMe drives, but for SATA devices, you'll need to query WMI:

Get-WmiObject -Namespace root/wmi -Class MSStorageDriver_ATAPISmartData | Select-Object InstanceName, VendorSpecific

You'll get raw hex blobs that need manual parsing—a task best left to a dedicated tool unless you have a team of analysts. Most admins deploy CrystalDiskInfo in portable mode via their distribution platform or use enterprise tools like ManageEngine or Lansweeper for centralised S.M.A.R.T. dashboards.

Outlook

Will Windows ever fill this empty panel for SATA drives? Probably not soon. The Settings app's storage section has seen few functional updates in 2025, and the feature requests on the Feedback Hub that ask for broader drive health support remain under consideration with modest upvotes.

A more likely path is that the industry renders the problem obsolete. SATA SSD sales continue to decline as NVMe becomes standard across all form factors. Within a few years, the pool of Windows 11 machines running internal SATA drives will shrink to legacy systems, servers, and a niche of budget desktops. Microsoft may conclude that investing in a SATA health adapter isn't worth the engineering effort.

Until then, the practical answer is the same one power users have relied on for a decade: trust the Settings tool if you have an NVMe drive, reach for a third‑party utility otherwise, and never let a blank health panel be your only backup plan.