c# wmi - 检测多个 DIMM?
如下图所示,DIMM 被指定为“物理内存 1”(和“物理内存 0”)。有什么办法可以用它来区分 DIMM 吗?
我认为它将用“Select * from Win32_PhysicalMemory.Tag”替换“Select * from Win32_PhysicalMemory” ='物理内存0'”,但这不起作用。
如果有人可以提供有关如何执行此操作的任何意见,谢谢。
-LJM
As you can see in the below image, a DIMM is designated "Physical Memory 1" (and "Physical Memory 0"). Is there any way to use this to differentiate between DIMMs?
I was thinking it would be replacing the "Select * from Win32_PhysicalMemory" with "Select * from Win32_PhysicalMemory.Tag='Physical Memory 0'", but that did not work.
If anyone can offer any input on how to do this, thank you.
-LJM
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
where
子句限制 WMI select 语句返回的结果:MSDN 提供了有关如何查询 WMI。
Use the
where
clause to limit the results returned by the WMI select statement:MSDN has more info on how to query WMI.