BIOS 版本号和标识号?
我想要获取 BIOS 版本号和标识号。我已经在使用 WMI 类 Win32_Bios 数据类,但它不会返回任何 Windows 操作系统上的内部版本号和标识号的值。
谁能告诉我我应该如何获取上述BIOS文件?
I want to get the BIOS Build number and Identification number. I am already using WMI class Win32_Bios dataclass but I it is not returing the value for Build number and Identification number on any of the windows OS.
can any one let me know how should I go to get the above fileds mentioned for bios?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
关于“内部版本号”,没有任何规范要求 BIOS 供应商提供内部版本号,因此您并不总能找到一个。
关于“标识号”(我假设您指的是版本号?),根据我的经验,Win32_Bios 中有一个名为“SMBIOSBIOSVersion”的字段。这将是版本号。
Regarding the "build number", there is no specification that requires a BIOS vendor to provide a build number, so you will not always find one.
Regarding the "identification number" (by which I assume you mean the version number?), in my experience there is a field inside Win32_Bios called "SMBIOSBIOSVersion". This would be the version number.