2

I have an INF file for a filter driver in my WIX installer.

I want to know. Is there any way to UNDO the changes made by this INF file during unsinstallation?

jgauffin
  • 99,844
  • 45
  • 235
  • 372
  • The uninstall task of the Driver installation framework should uninstall the inf file. Has the Inf file things to uninstall, like uninstall sections? – Christopher Dec 06 '11 at 15:03

1 Answers1

0

If you know what changes you need to make, then you could write a custom action that executes on uninstall: How to add a WiX custom action that happens only on uninstall (via MSI)?. How you go about modifying the .ini file is up to the implementation of your custom action.

Community
  • 1
  • 1
BryanJ
  • 8,485
  • 1
  • 42
  • 61