0

Possible Duplicate:
Are there any good tools for reporting on a computer’s specs?

Is there a program that could give me a summary of a PC's spec - processor, ammount of RAM disk and so on.

justintime
  • 3,361

4 Answers4

3

Speccy

Level1Coder
  • 2,477
0

the DirectX Diagnostic Tool gives a summary of the hardware in a system, and should be present on all Windows machines.

entering dxdiag into a Run box and pressing Enter/Return should pull it up.

Xantec
  • 2,479
0

I'm a fan of the (now discontinued) AIDA32 programme. Wikipedia Article | MajorGeeks Download.

tombull89
  • 6,699
-1

You can use the WMIC command at the prompt on XP and later.

For example

wmic CPU list full /format:htable > COMPUTERSYSTEM.HTML

will dump CPU details to a HTML file.

Alan B
  • 1,305