gpt4 book ai didi

c++ - 如何确定计算机上安装的物理 RAM? ( Windows )

转载 作者:可可西里 更新时间:2023-11-01 11:24:31 26 4
gpt4 key购买 nike

如何在 Windows 中使用 C++ 将物理内存安装到我的计算机上?我的意思不仅是可以 GlobalMemoryStatusEx() 的容量参数,还有已用内存插槽的数量、内存类型(如 DDR1/DDR2/DDR3)、插槽类型 (DIMM/SO-DIMM) 和内存总线的时钟速率。我需要使用 SMBIOS 吗?或者是否有其他方式获取此信息?

最佳答案

在我的机器上,您请求的大部分信息都可以通过 WMI 获得。看看 Win32_PhysicalMemory和相关类(class)。

比如wmic memorychip在我的机器上的输出是:

C:\>wmic memorychip
Attributes BankLabel Capacity Caption ConfiguredClockSpeed ConfiguredVoltage CreationClassName DataWidth Description DeviceLocator FormFactor HotSwappable InstallDate InterleaveDataDepth InterleavePosition Manufacturer MaxVoltage MemoryType MinVoltage Model Name OtherIdentifyingInfo PartNumber PositionInRow PoweredOn Removable Replaceable SerialNumber SKU SMBIOSMemoryType Speed Status Tag TotalWidth TypeDetail Version
2 BANK 0 17179869184 Physical Memory 2133 1200 Win32_PhysicalMemory 64 Physical Memory ChannelA-DIMM0 12 Samsung 0 0 0 Physical Memory M471A2K43BB1-CPB 15741117 26 2133 Physical Memory 0 64 128
2 BANK 2 17179869184 Physical Memory 2133 1200 Win32_PhysicalMemory 64 Physical Memory ChannelB-DIMM0 12 Samsung 0 0 0 Physical Memory M471A2K43BB1-CPB 21251413 26 2133 Physical Memory 2 64 128

如上链接所述,FormFactor 12 是 SODIMM。

值得注意的是缺少电压(您没有要求,但通常很感兴趣)和 MemoryType,其文档在 MSDN 上已过时,而最近来自 DMTF 的 SMBIOS 文档在 DDR4 的枚举中包含值。等等

因此,您可能不得不或多或少地手动查看 SMBIOS 表。请参阅:How to get memory information (RAM type, e.g. DDR,DDR2,DDR3?) with WMI/C++

关于c++ - 如何确定计算机上安装的物理 RAM? ( Windows ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43705799/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com