-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?

  • 5
    All 64-bit x86 processors use the AMD 64-bit architecture. You have an Intel i3. The 64-bit extension to the x86 architecture is an AMD creation and thus Intel licenses it from AMD and extended it themselves. – Ramhound Apr 21 '15 at 10:50
  • 2
    This question has been asked before. The major reason is that it shows virtually no research effort on your part. – Ramhound Apr 21 '15 at 10:54
  • Here and here and the possible duplicate here – Ramhound Apr 21 '15 at 10:58

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
  • 156,873