Access Motherboard information without using WMI

爱⌒轻易说出口 提交于 2019-12-01 09:05:28

In Vista+ you can use GetSystemFirmwareTable API to access SMBIOS tables and parse them out to obtain [possibly available] serial numbers and other identification strings and values.

In particular you can access motherboard data, including vendor and S/N:

            Intel Corporation
            DZ77BH-55K
            AAG39018-400
            BQBH206600DT

Apparently there is no way to do this, which is unfortunate.

That information is provided by the CPUID instruction. The following link provides you with a program that uses this instruction to expose the results of executing the instruction.

cpuid GNU program

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!