Need Installer Project to install device drivers

S

Steve

I've tried to find out how to do this on MSDN and other sites, but I can't
find an example or even a mention of this. I need to install some printer
drivers with my application, anyone know how to accomplish this with a c#
Installer Project (MSI)?

Thanks for any help,
Steve
 
J

Jesse Houwing

Steve said:
I've tried to find out how to do this on MSDN and other sites, but I can't
find an example or even a mention of this. I need to install some printer
drivers with my application, anyone know how to accomplish this with a c#
Installer Project (MSI)?

Support for these kinds of things is not provided by default. You should
probably invest in a more robust installation package. It can be done
though. You'll have to implement a customaction which installs the
printer driver. I have no code samples for this and it would probably
involve a few p/Invoke calls to the win32 api, but it could work eventually.

It's probably cheaper and easier to just go out and buy a decent
installer product.

Jesse Houwing
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top