0

WMI を使用しWin32_DiskDriveて、マシン上のすべての を検索しています。USB ドライブなど、一時的にインストールされたドライブを除外したい。

これを行う方法はありますか?

4

1 に答える 1

1

次のように、WMI を使用して USB デバイスを検索できます。

public void CollectUSBDevices()
        {
            NameValueCollection collection = new NameValueCollection();
            ManagementObjectSearcher searcher2 = new ManagementObjectSearcher("SELECT * FROM win32_pnpentity where deviceid like 'USB%'");
            // Iterate through all found USB objects.            
            foreach (ManagementObject dm in searcher2.Get())
            {
                string nameValue = dm["Name"].ToString();
                string devid = dm["DeviceID"].ToString();

                if (nameValue.Contains("Generic USB Hub") || nameValue.Contains("USB Root Hub"))
                    continue;

                if (nameValue.Contains("USB Mass Storage Device") || devid.Contains("USBSTOR\\"))
                    collection.Add("USBDevice", nameValue);
            }
        }
于 2013-04-30T05:06:35.343 に答える