1

The remove previous versions property in the setup project doesn't quite work for me. I want the msi to also remove newer versions. Can I edit the msi database to tell it to remove all versions?

Thanks!

Isaac Bolinger
  • 7,328
  • 11
  • 52
  • 90

1 Answers1

4

Take a look at Upgrade table. You can control which versions are removed from the VersionMin and VersionMax fields.

Ciprian
  • 3,533
  • 1
  • 18
  • 22
  • I set it so there is one entry in the upgrade table with actionproperty=PREVIOUSVERSIONSINSTALLED. Then I set version max in that record to be 999999.99. So basically now all my version numbers are 'previous versions' and it overwrites them. Thanks a bunch. – Isaac Bolinger May 25 '12 at 20:42