How many hours the PC has worked

14

2

I will buy a used PC and I want to know how many hours the PC has worked.

I have already found :

  • systeminfo | findstr /C:"Install Date"
  • systeminfo | findstr /C:"BIOS Version"

but I need to know how many hours the PC has worked (used)

iOSGeek

Posted 2015-09-07T17:58:43.980

Reputation: 467

6There is no way to get that information. – Sami Kuhmonen – 2015-09-07T18:05:22.120

11

for the hard drive, you can read the S.M.A.R.T. attributes (https://en.wikipedia.org/wiki/S.M.A.R.T.). Attribute #09 is Power-On Hours. Be careful if the drive is pre-2005, as the value may be erratic or incorrect.

– njzk2 – 2015-09-07T20:07:00.050

@njzk2 I would amend that as follows: "Be careful if the drive is pre-2005." That would be a minimum of ten years old, on the far edge of the bathtub graph of HDD mortality. – None – 2015-09-08T00:31:27.307

This very much depends on what exactly you're looking to measure, and what assurances you have about the PC's build history. For example, the HDD measurements suggested in some answers are no good to you if the HDD was replaced before selling the PC to you. (A common security measure, especially for businesses.) Also, time of usage alone is not necessarily an accurate measure of the wear and tear on a machine - 24 hours of 100% CPU usage is very different from 24 hours of idling. And the "Install Date" from systeminfo is no good if the OS has been reloaded at any time. – Iszi – 2015-09-30T20:28:57.860

The BIOS Version from systeminfo is also not useful for your metrics. Most likely, any date gathered from there will be well before the PC was ever first booted - in fact, it could even be well before the motherboard was actually built. If previous owners kept the BIOS up to date though, then the date will be well after the system's first boot. – Iszi – 2015-09-30T20:33:33.730

So what do you suggest please? – iOSGeek – 2015-09-30T20:37:32.190

Unless you have a particular external requirement to know how much usage a PC has had prior to your purchase, I wouldn't much worry about it. There comes a certain point in a PC's lifetime - usually after the first few months - where the likelihood of any component in the system failing without outside influence becomes extremely remote. Wear and tear on solid state electronics (which is most of your computer components) isn't like wear and tear on mechanical parts (like a car). The most likely parts to fail over time will be fans and HDDs - the few moving parts of the system. – Iszi – 2015-09-30T20:41:01.290

Odds are, you'll want to upgrade or replace the system due to performance issues (newer OS/applications requiring beefier hardware) well before any critical or expensive components die of "old age" - regardless of how many "miles" the system has on it before you get it. – Iszi – 2015-09-30T20:43:10.383

Answers

20

You can use a software like CrystalDiskInfo to get the "Power on hours" of the hard drive.

Just keep in mind that the HDD may have been replaced and thus be newer than the PC.

enter image description here

iOSGeek

Posted 2015-09-07T17:58:43.980

Reputation: 467

Note: This assumes that you're either only interested in the HDD's usage history, or 100% confident that the HDD in the system now is the same one the system was originally built with. – Iszi – 2015-10-01T14:15:33.170

And that the drive was not recycled from a previous build. – Hennes – 2019-04-16T18:43:42.803

0

If the computer has a computer which has been used from scratch with the computer you can check the hours used on the monitor with the ddcutil command. first you need to find if the monitor has that capability by the command

sudo ddcutil capabilities

if it has it will be something like Feature 0C (display usage time) and you could get the information by the command

sudo ddcutil getvcp 0C

and it will tell you how many hours it has been on. getvcp is used for getting info from the computer. you can also do some cool stuff with ddcutil like setting the brightness and so on without touching the monitor.

LearnerLearner

Posted 2015-09-07T17:58:43.980

Reputation: 1