C# 如何检查安装的物理内存是 ECC 还是非 ECC?
我试图找出如何检查安装的内存 (RAM) 是否是 ECC 或非 ECC 我需要使用 WMI 类通过 C# 来完成此操作。
你们有什么想法吗?
提前谢谢
I'm trying to find out how to check if installed memory (RAM) is ECC of non-ECC
I need to do that with C# using WMI Classes.
Does any of you have an idea ?
thnx in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以查询WMI
Win32_PhysicalMemory
并测试TotalWidth
(包括任何校验位的位数)是否大于DataWidth
(不包括校验位的位数)。You could query WMI
Win32_PhysicalMemory
and test whetherTotalWidth
(bit count including any check bits) is greater thanDataWidth
(bit count excluding check bits).