我目前正在为XP和Vista等旧系统编写驱动程序扫描解决方案,我想获得一个没有安装驱动程序的设备的hardwareId列表。
SELECT * FROM Win32_PNPEntity仅在为设备安装了驱动程序时才返回HardwareID列表。
这是我的代码:
string txt = "SELECT * FROM win32_PNPEntity";
ManagementObjectSearcher deviceSearch = new ManagementObjectSearcher("root\\CIMV2", txt);
foreach (ManagementObject device in deviceSearch.Get())
{
if (device["Status"].ToString() != "OK")
{
try
{
foreach (var item in device.Properties)
{
Console.WriteLine(item.Name + ": " + item.Value);
}
Console.WriteLine("HardwareIDs:");
foreach (string id in (string[])device["HardwareID"]) { Console.WriteLine(id); }
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
}
}
由于
答案 0 :(得分:0)
您可以使用ORMi库。解决起来非常简单。
1)定义你的班级:
public class Win32_PnPEntity
{
public string Caption { get; set; }
public string Status { get; set; }
}
2)访问WMI:
WMIHelper helper = new WMIHelper("root\\CimV2");
List<Win32_PnPEntity> devices = helper.Query<Win32_PnPEntity>().ToList().Where(p => p.Status == "Error");