I would like to modify an MSI installer (created through WiX) to delete an entire directory on uninstall.
I understand the RemoveFile
and RemoveFo
I used Custom Action separately coded in C++ DLL and used the DLL to call appropriate function on Uninstalling using this syntax :
Using the above code block, I was able to run any function defined in C++ DLL on uninstall. FYI, my uninstall function had code regarding Clearing current user data and registry entries.