如何在 C++ 中获取 BIOS 制造商和型号 不使用WMI?

发布于 2024-07-24 09:37:38 字数 142 浏览 4 评论 0原文

我们正在运行 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 技术交流群。

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

发布评论

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

评论(4

原谅我要高飞 2024-07-31 09:37:39

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

如梦亦如幻 2024-07-31 09:37:38

您可以在 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.

难以启齿的温柔 2024-07-31 09:37:38

它位于注册表中的 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.

瑕疵 2024-07-31 09:37:38

DmiDecode for Windows 可以做到这一点。

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