Automatic driver installation in VS2008 configuration project

Is there a way to install an automatic driver installation during my C # application? I am using a standard installation project in VS2008 (MSI file). My application interacts with a custom USB device, so the user must first install the .NET application, and then manually connect the device to his PC and let Windows install the driver. I would like to do this in one step without connecting the device to the USB port.

Thanks Petr

+3
source share
1 answer

The best way is probably to preinstall the USB driver. Then, when the USB device is connected to the network, Windows finds and configures the driver automatically. Here's a place to start: http://msdn.microsoft.com/en-us/library/ff549743%28v=vs.85%29.aspx

+1
source

Source: https://habr.com/ru/post/1728291/


All Articles