c# wmi - 检测多个 DIMM?

发布于 2024-12-17 04:45:09 字数 291 浏览 1 评论 0原文

如下图所示,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?

enter image description here

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

别想她 2024-12-24 04:45:10

使用 where 子句限制 WMI select 语句返回的结果:

SELECT * FROM Win32_PhysicalMemory WHERE Tag = 'Physical Memory 0'

MSDN 提供了有关如何查询 WMI

Use the where clause to limit the results returned by the WMI select statement:

SELECT * FROM Win32_PhysicalMemory WHERE Tag = 'Physical Memory 0'

MSDN has more info on how to query WMI.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文