How to Check SSD Health and Remaining Lifespan on Windows 11 (Without Third-Party Software)

By Adhen Prasetiyo

Saturday, February 14, 2026 • 6 min read

Windows 11 disk health settings showing SSD remaining life percentage

SSDs don’t last forever. Unlike traditional hard drives that give you warning sounds (clicking, grinding) before failing, SSDs can die silently — one day they just stop working, and your data is gone.

The good news: every modern SSD tracks its own health using SMART data (Self-Monitoring, Analysis, and Reporting Technology), and Windows 11 has built-in tools to read this data. You don’t need to install any third-party software.

This guide shows you how to check your SSD’s health, understand what the numbers mean, and know when it’s time to replace your drive.

Method 1: Check SSD Health via Windows Settings (Easiest)

Windows 11 22H2 and later includes a built-in SSD health monitor for NVMe drives.

Step 1: Open Settings (press Windows + I).

Step 2: Go to System → Storage → Advanced storage settings → Disks & volumes.

Step 3: Click on your SSD drive, then click “Properties”.

Step 4: Look for the “Drive health” section. You’ll see:

  • Estimated remaining life — percentage of lifespan remaining (100% = brand new, 0% = end of life)
  • Available spare — percentage of spare blocks available for replacing worn-out cells
  • Temperature — current drive temperature in Celsius

Note: This feature only works for NVMe SSDs. Older SATA SSDs may not show health data in Windows Settings. For SATA drives, use Method 2 or 3.

What the Numbers Mean

Metric Good Warning Critical
Estimated remaining life 70-100% 30-69% Below 30%
Available spare 80-100% 50-79% Below 50%
Temperature Below 50°C 50-70°C Above 70°C

Method 2: Check SSD Health via Command Prompt (All SSD Types)

This method works for both NVMe and SATA SSDs.

Step 1: Open Command Prompt as Administrator (right-click Start → Terminal (Admin)).

Step 2: Run:

This shows a quick health check. “OK” means the drive reports no issues. “Pred Fail” means the drive is predicting failure — back up immediately.

Step 3: For more detailed SMART data, run:

This shows your drive model, serial number, and overall status.

Method 3: Check Detailed SMART Data via PowerShell

For the most comprehensive SSD health data without third-party tools:

Step 1: Open PowerShell as Administrator.

Step 2: Run:

Get-PhysicalDisk | Select-Object FriendlyName, HealthStatus, OperationalStatus, MediaType, Size

This shows:

  • HealthStatus — Healthy, Warning, or Unhealthy
  • OperationalStatus — OK or Degraded
  • MediaType — SSD or HDD

Step 3: For NVMe-specific data including wear level:

Get-PhysicalDisk | Get-StorageReliabilityCounter | Select-Object *

This gives you detailed metrics including:

  • Wear — Percentage of life used (lower is better)
  • ReadErrorsTotal — Number of read errors
  • Temperature — Current temperature in Celsius
  • PowerOnHours — Total hours the drive has been powered on

Understanding Key SMART Attributes

Attribute What It Means When to Worry
Wear / Percentage Used How much of the SSD’s rated write endurance has been consumed Above 80% used — start planning replacement
Reallocated Sectors Bad cells replaced with spare cells Any non-zero value deserves attention
Power On Hours Total hours the drive has been running Not a direct health indicator, but useful context
Temperature Current operating temperature Consistently above 70°C can accelerate wear
Read/Write Errors Errors during read/write operations Any increasing trend is a warning sign

Method 4: Check SSD Health via Device Manager

A quick way to see if Windows detects any drive issues.

Step 1: Press Windows + XDevice Manager.

Step 2: Expand “Disk drives”.

Step 3: Right-click your SSD → Properties“Volumes” tab → Populate.

Step 4: Check the “General” tab. If the device status says “This device is working properly,” Windows hasn’t detected any hardware issues.

Limitation: Device Manager only shows basic status. It won’t give you wear percentage or SMART data.

How Long Do SSDs Actually Last?

Modern SSDs are rated for a specific amount of data written, measured in TBW (Terabytes Written). Here are typical ratings:

SSD Type Typical TBW Rating Estimated Lifespan (Normal Use)
Budget SATA SSD (256GB) 150 TBW 3-5 years
Mid-range NVMe (500GB) 300 TBW 5-7 years
High-end NVMe (1TB) 600 TBW 7-10 years
Enterprise NVMe (2TB) 1200+ TBW 10+ years

“Normal use” means typical desktop/laptop usage — web browsing, office work, light gaming, media. Heavy video editing, database workloads, or constant large file transfers will consume the write endurance faster.

Warning Signs That Your SSD Is Dying

Watch for these red flags:

  • Sudden slowdowns — Files take much longer to open or save than usual
  • Frequent freezes — System hangs randomly for several seconds
  • Read/write errors — Files become corrupted or unreadable
  • Boot failures — Windows occasionally fails to start or takes much longer
  • SMART warnings — Any “Warning” or “Unhealthy” status in the tools above
  • Bad blocks increasing — Reallocated sector count rising over time

If you see ANY of these signs: Back up your data immediately. SSDs can go from “mostly fine” to “completely dead” very quickly once they start failing.

Frequently Asked Questions

My SSD shows “Healthy” but it’s slow. Is it failing?

Not necessarily. SSD slowdowns can be caused by the drive being nearly full (keep at least 10-20% free space), TRIM not working properly, or outdated firmware. Check your free space first, then run Optimize Drives from Windows search to ensure TRIM is active.

Does checking SSD health use up its lifespan?

No. Reading SMART data is a read operation, not a write operation. You can check SSD health as often as you want without any impact on lifespan.

My SSD shows 50% remaining life. Should I replace it now?

Not urgently, but start planning. At 50%, your SSD still has significant life left. Start backing up important data regularly and budget for a replacement within the next 1-2 years. Replace immediately if it drops below 20%.

Can I check SSD health on an external USB SSD?

Some USB enclosures pass through SMART data, but many don’t. The Windows Settings method (Method 1) may not work for USB drives. Try PowerShell (Method 3) — if it can’t read the data, you’ll need third-party software like CrystalDiskInfo.

How is SSD lifespan different from warranty?

SSD warranty (typically 3-5 years) is the manufacturer’s guarantee period. SSD lifespan (measured in TBW) is how much data you can write before the cells wear out. Your SSD can outlast its warranty, or it can reach its TBW limit before the warranty expires — they’re independent measurements.

Conclusion

Windows 11 gives you everything you need to monitor SSD health without installing extra software. Check Settings → Disks & volumes for a quick overview (NVMe drives), or use PowerShell for detailed SMART data on all drive types. Make it a habit to check your SSD health every few months, and always back up your data when the remaining life drops below 30%.

Step-by-Step Guide

1

Open Windows Settings Disk Management

Press Windows + I, go to System → Storage → Advanced storage settings → Disks & volumes.

2

Select your SSD drive

Click on your SSD drive, then click Properties to view the drive health section.

3

Read the health data

Check Estimated remaining life percentage, Available spare percentage, and current Temperature in Celsius.

4

Use PowerShell for detailed SMART data

Open PowerShell as admin and run Get-PhysicalDisk | Get-StorageReliabilityCounter | Select-Object * to see detailed wear level, read errors, power on hours, and temperature.

5

Take action based on results

If remaining life is below 30% or health status shows Warning, back up your data immediately and plan for SSD replacement.

Frequently Asked Questions

Q: Can I check SSD health on Windows 11 without extra software?
A: Yes. Windows 11 Settings shows SSD health for NVMe drives under System → Storage → Disks & volumes. For all drive types, use PowerShell with Get-PhysicalDisk commands.
Q: Does checking SSD health reduce its lifespan?
A: No. Reading SMART data is a read-only operation that has zero impact on SSD write endurance or lifespan.
Q: When should I replace my SSD?
A: Start planning replacement when remaining life drops below 30%. Replace immediately if it drops below 10% or if you see increasing read/write errors.
Q: How long do SSDs typically last?
A: Modern SSDs last 5-10 years under normal desktop usage. Lifespan depends on TBW rating and how much data you write daily.
Adhen Prasetiyo

Research Bug bounty at javahack team

Research Bug bounty Profesional

Web Development Research Bug Hunter
View all articles →