How to Check Hard Drive Power On Hours (2026 Complete Guide)
Last updated: July 19, 2026 | Estimated reading time: 12 minutes
Knowing how many hours your hard drive or SSD has been powered on is crucial information for assessing its health and predicting its remaining lifespan. Power-on hours (POH) is one of the most important SMART (Self-Monitoring, Analysis, and Reporting Technology) attributes tracked by modern storage drives. This metric tells you how long the drive has been running since it was manufactured, giving you valuable insight into how much useful life may remain.
In this guide, we will explain what power-on hours are, why they matter, and three different methods to check this value on your computer. Whether you want to evaluate a used drive before purchasing, monitor your current drive’s health, or plan for a future replacement, understanding power-on hours is an essential skill for any computer user in 2026.
Table of Contents
What Are Power-On Hours
Power-on hours (POH) is a SMART attribute that tracks the total number of hours a storage drive has been powered on since it was manufactured. This counter increments every hour the drive is active, regardless of whether it is actively reading or writing data. Even if the drive is idle but powered on, the counter continues to increase.
The power-on hours value is stored in the drive’s firmware and cannot be reset or tampered with under normal circumstances. This makes it a reliable metric for assessing how much a drive has been used, similar to the odometer on a car. When purchasing a used drive, checking the power-on hours helps you understand the drive’s usage history.
For hard disk drives (HDDs), power-on hours are particularly important because the mechanical components (spinning platters and moving read/write heads) have a finite lifespan. Most consumer HDDs are rated for 300,000 to 1,000,000 power-on hours before failure becomes likely. For SSDs, the power-on hours metric is less critical than the total bytes written (TBW), but it still provides useful information about the drive’s age and usage patterns.
How Power-On Hours Are Counted
The power-on hours counter increments in one-hour increments. Some drives report partial hours (such as 0.1-hour increments), but most report in whole hours. The counter starts at zero when the drive is manufactured and increases throughout the drive’s lifetime. The counter does not stop when the computer goes to sleep or when the drive is idle, it only counts actual power-on time.
Some enterprise-grade drives have different power-on hour behaviors. For example, some enterprise drives may count hours differently when in standby or low-power modes. However, for consumer drives, the counting method is straightforward: one hour of power equals one hour on the counter.
Why Check Them
There are several important reasons to check the power-on hours of your storage drives:
Evaluating Used Drives
If you are buying a used hard drive or SSD, the power-on hours value tells you how much the drive has been used. A drive with 50,000 power-on hours has been running for approximately 5.7 years continuously, which means it has seen significant use. A drive with 5,000 power-on hours has only been used for about 7 months of continuous operation. This information helps you make an informed purchasing decision.
Predicting Remaining Lifespan
While power-on hours alone do not determine when a drive will fail, they provide a general indicator of remaining useful life. Drives that have accumulated many power-on hours are statistically more likely to fail than newer drives. Combined with other SMART attributes like reallocated sectors and temperature, power-on hours help you assess the risk of drive failure.
Monitoring Drive Health Over Time
By periodically checking the power-on hours of your drives, you can track how quickly they accumulate usage. This is particularly useful for drives in always-on systems like NAS devices or servers, where drives may accumulate power-on hours faster than expected. If a drive accumulates hours faster than expected, it may indicate a problem with the system not properly entering sleep mode.
Warranty Claims
Some manufacturers use power-on hours as part of their warranty assessment. If a drive fails within the warranty period but has accumulated an unusually high number of power-on hours (indicating heavy commercial use in a consumer-rated drive), the warranty claim may be affected. Knowing the power-on hours helps you understand your warranty position.
Planning Replacements
For critical systems where drive failure would cause significant problems, monitoring power-on hours allows you to plan proactive replacements. Many IT departments replace drives before they reach their expected end-of-life based on a combination of power-on hours and other SMART attributes.
Method 1: CrystalDiskInfo
CrystalDiskInfo is the most popular and user-friendly tool for checking hard drive power-on hours and other SMART data. It is free, lightweight, and provides a clear visual interface that makes it easy to understand your drive’s health status.
Downloading and Installing
Visit the CrystalDiskInfo website and download the latest version. The standard edition is sufficient for most users. Install the software following the on-screen prompts. CrystalDiskInfo requires administrator privileges to access SMART data from your drives.
Reading Power-On Hours
Launch CrystalDiskInfo and it will automatically detect all storage drives connected to your system. Each drive is displayed with its model name, capacity, and health status. Click on a drive to see its detailed SMART attributes. The power-on hours value is listed as “Power On Hours” or “09 Power-On Hours Count” in the SMART data table. The value is displayed in hours, and you can see both the current value and the worst recorded value.
Understanding the Health Status
CrystalDiskInfo assigns a health status to each drive: Good (blue), Caution (yellow), or Bad (red). This status is based on all SMART attributes, not just power-on hours. A drive can have high power-on hours but still show a Good status if all other attributes are within normal ranges. Conversely, a drive with low power-on hours may show Caution or Bad status if other SMART attributes indicate problems.
CrystalDiskInfo also displays the temperature of each drive, which is another important health indicator. Drives that consistently run above 50 degrees Celsius may have reduced lifespan. The software updates in real-time, so you can monitor temperature changes as you use your computer.
Method 2: WMIC Command
The WMIC (Windows Management Instrumentation Command-line) method uses built-in Windows tools to check power-on hours without installing any third-party software. This method works on Windows 10 and 11.
Opening Command Prompt
Press Windows + R, type cmd, and press Enter to open the Command Prompt. For best results, right-click on Command Prompt and select “Run as administrator” to ensure you have full access to drive information.
Running the WMIC Command
Type the following command and press Enter: wmic diskdrive get model,status,size,powerons hours. This command queries all connected drives and displays their model name, health status, capacity, and power-on hours in a text table. The output is formatted as plain text, which you can copy and paste into a document for record-keeping.
Understanding the Output
The WMIC output shows each drive on a separate line with its corresponding information. The power-on hours value is displayed in whole hours. If a drive does not report power-on hours (some USB-connected drives or RAID arrays may not report this value), the field will be blank or show an error.
Note that the WMIC command provides basic SMART information compared to CrystalDiskInfo. It does not show individual SMART attributes like reallocated sectors or temperature. However, it is useful for quickly checking power-on hours without installing additional software.
Method 3: SMART Data
SMART (Self-Monitoring, Analysis, and Reporting Technology) data provides detailed information about a drive’s health and usage. You can access SMART data through several methods, including the command line and third-party tools.
Using PowerShell
Open PowerShell as Administrator and use the Get-PhysicalDisk and Get-StorPhysicalDevice cmdlets to retrieve drive information. For detailed SMART data, you can use the Get-WmiObject cmdlet with the Win32_DiskDrive class. This method provides more detailed information than WMIC but requires familiarity with PowerShell syntax.
Using the Drive Manufacturer’s Tool
Most SSD and HDD manufacturers provide free diagnostic tools that display SMART data. Samsung Magician for Samsung drives, Western Digital Dashboard for WD drives, and Crucial Storage Executive for Crucial drives all show power-on hours and other SMART attributes. These tools are optimized for their respective drives and often provide additional features like firmware updates and performance optimization.
Using Linux Commands
If you are using Linux, the smartctl command from the smartmontools package provides comprehensive SMART data access. Install the package with your distribution’s package manager (sudo apt install smartmontools on Debian/Ubuntu) and run sudo smartctl -a /dev/sda to display all SMART attributes for a drive. The power-on hours are listed under the “Power_On_Hours” attribute.
Interpreting Results
Understanding what power-on hours values mean for your drive’s health requires context. The following table provides general guidelines for interpreting power-on hours for consumer hard drives and SSDs.
| Power-On Hours | Status | Typical Usage Duration | Recommended Action |
|---|---|---|---|
| 0 – 10,000 hours | Good | Less than 1.1 years continuous | Drive is relatively new, continue monitoring |
| 10,000 – 30,000 hours | Good | 1.1 to 3.4 years continuous | Normal usage range, monitor other SMART attributes |
| 30,000 – 50,000 hours | Warning | 3.4 to 5.7 years continuous | Consider backing up data and planning replacement |
| 50,000 – 100,000 hours | Warning | 5.7 to 11.4 years continuous | High usage, back up data regularly and plan replacement |
| 100,000+ hours | Bad | 11.4+ years continuous | Replace drive as soon as possible, failure risk is high |
Important Caveats
These guidelines are general estimates and should not be used as the sole indicator of drive health. A drive with 50,000 power-on hours may still function perfectly if it has been well-maintained and operates in a cool, stable environment. Conversely, a drive with only 10,000 power-on hours may fail if it has been subjected to high temperatures, frequent power cycling, or physical shock.
Always combine power-on hours with other SMART attributes for a complete health assessment. Key attributes to watch include reallocated sectors, current pending sectors, uncorrectable errors, and temperature. A drive that shows Caution in CrystalDiskInfo should be investigated further, regardless of its power-on hours.
For SSDs, power-on hours are less critical than total bytes written (TBW). SSDs have no moving parts, so the mechanical wear that limits HDD lifespan does not apply. However, SSDs do have a finite number of write cycles, and the TBW metric is more relevant for predicting SSD lifespan. If you are evaluating an SSD, focus on the TBW and wear leveling count attributes in addition to power-on hours.
Common Mistakes to Avoid
When checking hard drive power-on hours, avoid these common mistakes:
1. Relying solely on power-on hours: Power-on hours are just one indicator of drive health. A drive can fail with low power-on hours if it has been subjected to adverse conditions, or it can continue working for years with high power-on hours. Always check multiple SMART attributes.
2. Ignoring the SMART data entirely: Some users never check their drive’s SMART data until it is too late. Make it a habit to check your drives periodically, especially if you notice performance issues or unusual sounds from hard drives.
3. Confusing power-on hours with age: Power-on hours measure how long the drive has been powered on, not how old it is in calendar years. A drive manufactured five years ago may have only 5,000 power-on hours if it was rarely used, while a one-year-old drive in a server may have 8,000 power-on hours.
4. Not considering usage patterns: A drive used 24/7 in a NAS device accumulates power-on hours much faster than a desktop drive used a few hours per day. When evaluating power-on hours, consider the intended usage pattern of the system.
5. Forgetting about SSD wear: For SSDs, power-on hours are less important than TBW and wear leveling. If you are checking an SSD, make sure to also look at the total bytes written and wear indicator attributes.
6. Not backing up data: Regardless of the power-on hours value, always maintain regular backups of important data. Drives can fail unexpectedly at any point in their lifecycle. If you are moving an old SSD to a new system, see our guide on how to install an old SSD in a new PC for tips on checking drive health before installation.
Frequently Asked Questions
Q: How many power-on hours is too many for a hard drive?
A: Most consumer hard drives are rated for 300,000 to 1,000,000 power-on hours. Drives with more than 50,000 power-on hours should be monitored closely and backed up regularly. Drives with over 100,000 power-on hours have an elevated risk of failure and should be replaced proactively.
Q: Can power-on hours be reset or manipulated?
A: Under normal circumstances, the power-on hours counter cannot be reset. It is stored in the drive’s firmware and increments automatically. While there are specialized tools that can theoretically modify SMART data, doing so would be considered fraud when selling a used drive and is not recommended.
Q: Do SSDs have power-on hours like hard drives?
A: Yes, SSDs track power-on hours just like hard drives. However, for SSDs, the total bytes written (TBW) metric is more important for predicting lifespan than power-on hours, since SSDs have no mechanical components that wear out with running time.
Q: How do I check power-on hours for an external hard drive?
A: CrystalDiskInfo can read SMART data from most USB-connected external drives. If the drive is in an enclosure that does not pass through SMART data, you may need to remove the drive from the enclosure and connect it directly to your computer. Some external drives do not support SMART data passthrough.
Q: Is 30,000 power-on hours a lot for a hard drive?
A: 30,000 power-on hours is moderate usage, equivalent to about 3.4 years of continuous operation. For a five-year-old drive, this is normal usage. For a one-year-old drive, this indicates heavy usage (possibly from a server or always-on system). The health of the drive depends on more than just power-on hours.
Q: Should I avoid buying a drive with high power-on hours?
A: Not necessarily. A drive with moderate power-on hours (under 30,000) that shows healthy SMART data can be a good purchase at the right price. However, drives with over 50,000 power-on hours carry more risk and should be priced accordingly. Always check the full SMART data before purchasing a used drive.
Q: Do power-on hours affect SSD performance?
A: Power-on hours themselves do not directly affect SSD performance. However, as an SSD ages and accumulates more power-on hours, the NAND flash cells may experience some degradation, which can slightly reduce write speeds over time. The impact is minimal for most consumer workloads.
Q: Can I reduce power-on hours by putting my computer to sleep?
A: Yes, putting your computer to sleep or hibernating it stops the power-on hours counter from incrementing. If you want to reduce the accumulation of power-on hours on a drive, shutting down the computer or putting it to sleep when not in use is the best approach. This is particularly relevant for always-on systems like home servers or NAS devices.
Conclusion
Checking hard drive power-on hours in 2026 is a simple but valuable practice that helps you assess the health and remaining lifespan of your storage drives. Whether you use CrystalDiskInfo for a comprehensive visual overview, the WMIC command for a quick check, or the manufacturer’s diagnostic tool for drive-specific details, the information is readily accessible.
Remember that power-on hours are just one piece of the drive health puzzle. Always combine this metric with other SMART attributes like reallocated sectors, temperature, and total bytes written (for SSDs) to get a complete picture of your drive’s condition. Regular monitoring allows you to catch potential issues early and plan proactive replacements before data loss occurs.
By following the methods outlined in this guide and understanding how to interpret the results, you can make informed decisions about your storage drives, whether you are evaluating a used purchase, monitoring your current drives, or planning for future upgrades. If you are planning to upgrade to a new drive, check our guide on how to make SSD main drive for tips on getting the most from your new storage.




