Requesting information about specific hardware in Windows with C ++

In particular, I want to request a system graphics processor for the following:

GPU name, series (e.g. ATI Radion 5800, NVIDIA GeForce 4 MX, etc.), BIOS version, driver version, GPU clock speed, GPU memory speed, memory type, memory size, bus width, bandwidth, type of used tires, supplier.

Any ideas? The application I'm developing just needs to display this information to the user.

+3
source share
1 answer

I suggest querying WMI using the following WMI objects:

Win32_DisplayConfiguration
- GPU name

Win32_VideoController
- ,
-

:

CIM_VideoBIOSFeature
CIM_VideoBIOSElement

+2

Source: https://habr.com/ru/post/1764992/


All Articles