gpt4 book ai didi

windows - 在 Windows 上确定 GPU 制造商

转载 作者:可可西里 更新时间:2023-11-01 11:53:55 25 4
gpt4 key购买 nike

我打算编写一个 Windows 应用程序,如果该应用程序可以判断正在使用的显卡,那将会很有用。至少,看看 GPU 的制造商会有所帮助。到目前为止,我还没有设置编程语言。

什么 Windows 库公开了这些信息?

最佳答案

有关使用 WMI 的 C# 方法,请参阅此处。您几乎可以通过任何语言访问 WMI:

C# detect which graphics card drives video

ManagementObjectSearcher searcher 
= new ManagementObjectSearcher("SELECT * FROM Win32_DisplayConfiguration");

string graphicsCard = string.Empty;
foreach (ManagementObject mo in searcher.Get())
{
foreach (PropertyData property in mo.Properties)
{
if (property.Name == "Description")
{
graphicsCard = property.Value.ToString();
}
}
}

关于windows - 在 Windows 上确定 GPU 制造商,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22118174/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com