0

I want to install a UMDF software, the only driver from our MSI, I understand that to do it, I need to create a root-enumerated device and then install the driver to driver store. I have never written a custom action before.

Has anyone done it before and can get some code?

Ajay
  • 18,086
  • 12
  • 59
  • 105

2 Answers2

1

Read this topics in the WiX Tutorial:

You may also want to read MSDN documentation on Custom Actions.

Alexey Ivanov
  • 11,541
  • 4
  • 39
  • 68
  • @Navneet Gupta If an answer was useful to use, click Up arrow; if the answer solved your issue, click Accept. This way you give reward to people who help you. – Alexey Ivanov Sep 02 '11 at 16:16
0

It's not recommended to write your own custom action unless you have to because you will have to take care some complex things such as rolling back.

In this case, I would suggest you take a look at the Difx tool shipped with the WDK.

Marshall
  • 1
  • 1
  • Thanks for all the answers ... I looked at Difx but looks like there are various limitations related to servicing and upgrades http://www.mail-archive.com/wix-users@lists.sourceforge.net/msg35219.html – Navneet Gupta Sep 02 '11 at 13:41