How do I get information about recently connected USB device?

后端 未结 3 1592
后悔当初
后悔当初 2020-12-07 04:08

I can catch when usb device is connected with Win32_DeviceChangeEvent

but there are only 3 properties allowed to view

class Win32_DeviceChangeEvent          


        
相关标签:
3条回答
  • 2020-12-07 04:47

    You can use ORMi to create a watcher so you can get information about any new device:

    WMIHelper helper = new WMIHelper("root\\CimV2");
    
    WMIWatcher watcher = new WMIWatcher("root\\CimV2", "SELECT * FROM __InstanceCreationEvent WITHIN 1 WHERE TargetInstance ISA 'Win32_PnPEntity'");
    watcher.WMIEventArrived += Watcher_WMIEventArrived;
    

    And then you can watch for the events:

    private static void Watcher_WMIEventArrived(object sender, WMIEventArgs e)
    {
        //DO YOUR WORK
    }
    
    0 讨论(0)
  • 2020-12-07 04:48

    The Win32_DeviceChangeEvent reports just the type of event that occurred and the Time of the event (uint64, representing 100-nanosecond intervals after January 1, 1601, UTC). No that much useful if you also want to know what arrived or was removed.

    I suggest to use instead the WqlEventQuery class, setting its EventClassName to [__InstanceOperationEvent][4].
    This system class provides a TargetInstance property the can be cast to a ManagementBaseObject, the full management object that also provides base information on the Device that generated the event.
    Among these information (which include the friendly name of the Device), the PNPDeviceID, which can be used to build other queries to further inspect the Device referenced.

    The WqlEventQuery's Condition property can be set here to TargetInstance ISA 'Win32_DiskDrive'.
    It can be set to any other Win32_ class of interest.

    Setup the event listener (local machine):
    (The event handler is called DeviceChangedEvent)

    WqlEventQuery query = new WqlEventQuery() {
        EventClassName = "__InstanceOperationEvent",
        WithinInterval = new TimeSpan(0, 0, 3),
        Condition = @"TargetInstance ISA 'Win32_DiskDrive'"
    };
    
    ManagementScope scope = new ManagementScope("root\\CIMV2");
    using (ManagementEventWatcher moWatcher = new ManagementEventWatcher(scope, query))
    {
        moWatcher.Options.Timeout = ManagementOptions.InfiniteTimeout;
        moWatcher.EventArrived += new EventArrivedEventHandler(DeviceChangedEvent);
        moWatcher.Start();
    }
    

    The event handler receives, in e.NewEvent.Properties["TargetInstance"], the Management Object representing a [Win32_DiskDrive][7] class.
    See the Docs about the properties directly available here.

    The __InstanceOperationEvent derived classes of interest, reported by the e.NewEvent.ClassPath.ClassName, can be:

    __InstanceCreationEvent: A new Device arrival has been detected.
    __InstanceDeletionEvent: A Device removal has been detected.
    __InstanceModificationEvent: An existing device has been modified in some way.

    Note that the event is raised in a secondary thread, we need to BeginInvoke the UI thread to update the UI with the new informations.

    See here: Get serial number of usb storage device for a class that provides most of the information available about a device (the informations are filtered to show USB devices only, but the filter can be removed).

    private void DeviceChangedEvent(object sender, EventArrivedEventArgs e)
    {
        using (ManagementBaseObject moBase = (ManagementBaseObject)e.NewEvent.Properties["TargetInstance"].Value)
        {
            string oInterfaceType = moBase?.Properties["InterfaceType"]?.Value.ToString();
            string devicePNPId = moBase?.Properties["PNPDeviceID"]?.Value.ToString();
            string deviceDescription = moBase?.Properties["Caption"]?.Value.ToString();
            string eventMessage = $"{oInterfaceType}: {deviceDescription} ";
    
            switch (e.NewEvent.ClassPath.ClassName)
            {
                case "__InstanceDeletionEvent":
                    eventMessage += " removed";
                    this.BeginInvoke(new MethodInvoker(() => { this.UpdateUI(eventMessage); }));
                    break;
                case "__InstanceCreationEvent":
                    eventMessage += "inserted";
                    this.BeginInvoke(new MethodInvoker(() => { this.UpdateUI(eventMessage); }));
                    break;
                case "__InstanceModificationEvent":
                default:
                    Console.WriteLine(e.NewEvent.ClassPath.ClassName);
                    break;
            }
        }
    }
    
    
    private void UpdateUI(string message)
    {
       //Update the UI controls with information provided by the event
    }
    
    0 讨论(0)
  • 2020-12-07 04:56

    You can try to use Win32_PnPEntity to get details. Win32_PnPEntity class

    0 讨论(0)
提交回复
热议问题