使用 VB.net 或 C# 访问 CPUID(CPU 序列号),无需使用 WMI
可能的重复:
C# 中的 x86/x64 CPUID
我需要检索 CPU 的序列号。当使用WMI时,它被称为CPUID。 我的目标是不使用 WMI 访问该信息。
非托管代码没问题
I really need some sample code and preferably .NET implementation
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
中的__cpuid()
函数获取 CPU 的 CPUID。这就是你想做的吗?You can get a CPU's CPUID with the
__cpuid()
function from<intrin.h>
. Is that what you're trying to do?