0

I have a query that return USB devices attached in:

   SelectQuery sq = new SelectQuery("select DeviceID, Model from Win32_DiskDrive where   InterfaceType='USB'");
   ManagementObjectCollection MOC = new ManagementObjectSearcher(sq).Get();

But it doesn't retrieve the SD card information.

How do i can retrieve this SD cards information using WMI queries?

Fher Devs
  • 45
  • 7
  • what does it return then..? [Almost Everything in WMI](http://www.codeproject.com/Articles/18268/How-To-Almost-Everything-In-WMI-via-C-Part-Hardw) – MethodMan Nov 25 '14 at 15:52
  • O sorry, i modified "select DeviceID, Model from Win32_DiskDrive where InterfaceType='USB'" removing "where InterfaceType='USB" XD sorry . – Fher Devs Nov 25 '14 at 23:57

1 Answers1

0

i modified "select DeviceID, Model from Win32_DiskDrive where InterfaceType='USB'" removing "where InterfaceType='USB"

Fher Devs
  • 45
  • 7