I am in the process of attepting to build an Microsoft installer update (MSP) where I would like to have the update installer remove files from the original installation.

I have succceessfully created a new msi, which when viewed in Orca.exe, I can see the RemoveFile table has the correct entry included, but after generating the *.msp file and executing, the files requested for removal still remain...

If anyone can help, it would be much appreciated.

link|improve this question

50% accept rate
feedback

1 Answer

File removals are associated with a component install or uninstall. So if your associated component is not being installed by the patch, the removal is not performed.

An easier approach is to use a custom action:

  • write a custom action which removes your file
  • add it in your new MSI
  • set this condition for it:

    PATCH

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.