1

I am looking at a server that has 4 physical processors, the Intel documentation indicates they are 6 core processors but this WMI query

WMIC CPU Get NumberOfCores, NumberOfLogicalProcessors /Format:List

yields the following

NumberOfCores=4
NumberOfLogicalProcessors=4

The product documentation indicates that the MAX CPU Configuration = 2

Falcon Momot
  • 25,244
  • 15
  • 63
  • 92
cmsjr
  • 138
  • 1
  • 6

1 Answers1

2

I believe the "Max CPU Configuration" is meant to say that the CPU can be configured two work with X other physical CPU's on your motherboard.

Not having to do with how many cores of one physical CPU you can have configured to run.

DebugXYZ
  • 136
  • 4
  • funny story, it was a virtual relaying the host's information. Thanks for the answer though. – cmsjr Jan 23 '15 at 06:32