如何在 C++ 中获取 BIOS 制造商和型号 不使用WMI?
我们正在运行 Windows XP Pro Service Pack 3 32 位和 64 位。 我们使用 WMI 来获取 BIOS 制造商和型号,但我们确实更喜欢使用 Win32 API 或汇编语言或 WMI 或 COM 之外的语言的方法。 代码示例是最受欢迎的。
We are running windows xp pro service pack 3 both 32 bit and 64 bit. We are using WMI to get the BIOS manufacturer and model, but we would really prefer an approach that used either the Win32 API or assembly language or something besides WMI or COM. Code samples are most welcome.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
codeproject 中有一篇文章提供了使用 API 调用 GetSystemFirmwareTable 来检索 SMIBIOS 信息的源代码。 链接:http://www.codeproject.com/KB/system/SMBIOS_Peek.aspx
There is an article in codeproject with source code that use API call GetSystemFirmwareTable to retrieve the SMIBIOS information. link: http://www.codeproject.com/KB/system/SMBIOS_Peek.aspx
您可以在 SMBIOS 内存中进行映射并解析它。 你想要的大部分信息都在那里。 这可以通过任何能够访问系统内存映射原语的语言来完成。
此外,此文档包含有关 Win32 函数的信息,这些函数可以用于查询 SMBIOS。
You can map in the SMBIOS memory and parse it. Most of the information you want is in there. This can be done from any language that has access to system memory mapping primitives.
Also, this document has information about the Win32 functions that can be used to query SMBIOS.
它位于注册表中的 HKEY_LOCAL_MACHINE/HARDWARE/DESCRIPTION/System
您有 SystemBiosVersion、SystemBiosDate 等。
此外,还有一个名为 BIOS 的子项,其中包含更多信息,例如 BIOSVendor 和 BIOSVersion。
根据系统的构建者,您还应该能够获得 BaseBoardManufacturer 和其他很酷的信息。
更新
您可以查看此链接。 这是VB代码。 他们尝试从注册表中读取它,但失败后会从内存地址中提取字符串数据。 在本例中,版本为 &HFE061,日期为 &HFFFF5。
It's in the registry at HKEY_LOCAL_MACHINE/HARDWARE/DESCRIPTION/System
You have SystemBiosVersion, SystemBiosDate, etc.
Also, there is a sub key called BIOS which has yet more information such as BIOSVendor and BIOSVersion.
Depending on who built the system you should also be able to get the BaseBoardManufacturer and other cool info.
UPDATE
You might check out this link. It's VB code. They try to read it from the registry, but failing that fall back to pulling string data out of a memory address. In this case it's &HFE061 for the Version and &HFFFF5 for the date.
DmiDecode for Windows 可以做到这一点。
DmiDecode for Windows can do this.