Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm writing USB listener with ManagementEventWatcher

I need to get DeviceInterfaceGUIDs of arriving/removed USB device

Is it possible?

Here is my code

WqlEventQuery _q = new WqlEventQuery("__InstanceOperationEvent", "TargetInstance ISA 'Win32_USBControllerDevice' ");
_q.WithinInterval = TimeSpan.FromSeconds(1);
ManagementEventWatcher _w = new ManagementEventWatcher(_q);
_w.EventArrived += new EventArrivedEventHandler(onEventArrived);
_w.Start();

private void onEventArrived(object sender, EventArrivedEventArgs e)
{
    ManagementBaseObject _o = e.NewEvent["TargetInstance"] as ManagementBaseObject;
    if (_o != null)
    {
        using (ManagementObject mo = new ManagementObject(_o["Dependent"].ToString()))
        {
           if (mo != null)
           {
              //Find Device Guid
            }
         }
    }
share|improve this question
Whats the problem? Run your code and see if it is possible? – Bali C Jun 6 '12 at 9:15

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.