Looking into possibility of making an USB distributed application
that will autostart on insertion of an USB stick and shutdown when removing the stick

Will use .Net and C#.
Looking for suggestion how to approach this using C#?


Update: Two possible solutions implementing this as a service.
- override WndProc
or
- using WMI query with ManagementEventWatcher

link|improve this question

1  
Good question on the service trapping this event. My first thought is you have to mark your service as "allow to interact with desktop" and then create a hidden window. Safer option is probably to create a windows app that runs at startup - it can create the window and then communicate to the svc – mjmarsh Mar 6 '09 at 20:22
feedback

5 Answers

up vote 4 down vote accepted

There's an article on codeproject.

link|improve this answer
Beat me to linking it. Good article. – Ben S Mar 6 '09 at 19:47
Good article +1. – Kb. Mar 6 '09 at 19:50
feedback

You can use WMI, it is easy and it works a lot better than WndProc solution with services.

Here is a simple example:

using System.Management;

ManagementEventWatcher watcher = new ManagementEventWatcher();
WqlEventQuery query = new WqlEventQuery("SELECT * FROM Win32_VolumeChangeEvent WHERE EventType = 2");
watcher.EventArrived += new EventArrivedEventHandler(watcher_EventArrived);
watcher.Query = query;
watcher.Start();
watcher.WaitForNextEvent();

And that's it :)

link|improve this answer
feedback

You can also use WMI to detect insertion events. It's a little bit more complicated than monitoring for WM_CHANGEDEVICE messages, but it does not require a window handle which may be useful if you are running in the background as a service.

link|improve this answer
1  
@John Conrad: +1 WMI is a good choice. Also found a SO topic on this: stackoverflow.com/questions/39704/… – Kb. Mar 7 '09 at 8:20
Actually WMI is much simpler solution. I'm posting it below as another solution. – VitalyB Jun 7 '10 at 10:06
feedback

Try WM_CHANGEDEVICE handling.

link|improve this answer
feedback

Here is what we did with C# .Net 4.0 under a WPF app. We are still searching for an answer to "how to tell WHICH device type was inserted/removed", but this is a start:

    using System.Windows.Interop;
...
public partial class MainWindow : Window
 {
    ...
    public MainWindow()
    {
    ...
    }

    //============================================================
    // WINDOWS MESSAGE HANDLERS
    // 

    private const int WM_DEVICECHANGE = 0x0219;  // int = 537
    private const int DEVICE_NOTIFY_ALL_INTERFACE_CLASSES = 0x00000004; 

    /// <summary>
    ///
    /// </summary>
    /// <param name="e"></param>
    protected override void OnSourceInitialized(EventArgs e)
    {
        base.OnSourceInitialized(e);
        HwndSource source = PresentationSource.FromVisual(this) as HwndSource;
        source.AddHook(WndProc);
    }

    private IntPtr WndProc(IntPtr hwnd, int msg, IntPtr wParam, IntPtr lParam, ref bool handled)
    {
        if (msg == WM_DEVICECHANGE)
        {
            ReadDongleHeader();
        }
        return IntPtr.Zero;
    }

}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.