Hello,
I would like to modify an MSI installer (created through WIX) to delete an entire directory on uninstall.
I understand the there RemoveFile and RemoveFolder options in WIX, but these are not robust enough to recursively delete an entire folder that has content created after the installation.
I noticed the similar entry here (http://stackoverflow.com/questions/195919/removing-files-when-uninstalling-wix), but I was wondering if this could be done more simply using a call to a batch script to delete the folder.
This is my first time using WIX, and I'm still getting the hang of Custom Actions. Can anybody give me a basic example of a custom action that will run a batch script on uninstall?
Thanks