Access CPUIDs (cpu serial numbers) WITHOUT using WMI using VB.net or C# [duplicate]
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
You can get a CPU's CPUID with the __cpuid()
function from <intrin.h>
. Is that what you're trying to do?
精彩评论