Wrong architecture or manufacturer - conflicting information

-3

1

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?

Yousha Aleayoub

Posted 2015-04-21T10:47:47.283

Reputation: 133

Question was closed 2015-04-22T06:14:54.417

5All 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 – 2015-04-21T10:50:49.280

2This question has been asked before. The major reason is that it shows virtually no research effort on your part. – Ramhound – 2015-04-21T10:54:50.487

Here and here and the possible duplicate here – Ramhound – 2015-04-21T10:58:55.060

Answers

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

Posted 2015-04-21T10:47:47.283

Reputation: 118 938