Glam Prestige Journal

Bright entertainment trends with youth appeal.

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)

8

2 Answers

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

2

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.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy