Hyper Threading

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,
I have a server that has "hyper threading" enabled on it. Is there a way
using the .NET framework classes, I can detect it programatically?.

Any help on this would be appreciated.

Regards,
Ganesh
 
Use the WMI class Win32_Processor to enumerate all the processors and check
their ProcessorID. If it is same for all the processors then the processor
is a HT enabled one.

(I tested this on a HT-enabled box and works as expected but didn't try on a
dual-processor box though.)

message Hello,
I have a server that has "hyper threading" enabled on it. Is there a way
using the .NET framework classes, I can detect it programatically?.

Any help on this would be appreciated.

Regards,
Ganesh
 
Back
Top