0

Possible Duplicate:
x86/x64 CPUID in C#

I need to retrieve CPU's serial numbers. When using WMI, it is called CPUID. My goal is to access that information WITHOUT using WMI.

Unmanaged is code is fine

I really need some sample code and preferably .NET implementation
Community
  • 1
  • 1
Chicago
  • 1,619
  • 4
  • 19
  • 32

1 Answers1

0

You can get a CPU's CPUID with the __cpuid() function from <intrin.h>. Is that what you're trying to do?

Jonathan Grynspan
  • 43,286
  • 8
  • 74
  • 104