-3

This is what I get from the set processor(Environment variable) command in 64-bit Windows 7:

PROCESSOR_ARCHITECTURE = AMD64

PROCESSOR_IDENTIFIER = Intel64 Family 6 Model 58 Stepping 9, GenuineIntel

And this is what I get in "System Information":

Processor: Intel(R) Core(TM) i3...

But how? What type of architecture and processor am I using?

1 Answers1

1

What type of architecture and processor am I using?

wmic cpu will give you a complete list of information regarding your processor.

Example output:

F:\test>wmic cpu get Description, Name
Description                           Name
Intel64 Family 6 Model 42 Stepping 7  Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz

Further Reading

DavidPostill
  • 162,382