[WiX-users] Need to support Downgrade installs

2014-11-26 Thread Rich Fowler
I need to allow Downgrading installations. This is for an internal application where a user may need to install version N over version N+1. Yes, I know this is frowned upon, but management insists. We need to make it seamless to our users. Forcing the user to first uninstall is not an option.

Re: [WiX-users] Need to support Downgrade installs

2014-11-26 Thread John Cooper
-users@lists.sourceforge.net Subject: [WiX-users] Need to support Downgrade installs I need to allow Downgrading installations. This is for an internal application where a user may need to install version N over version N+1. Yes, I know this is frowned upon, but management insists. We need to make

Re: [WiX-users] Need to support Downgrade installs

2014-11-26 Thread Joel Budreau
Hey Rich, If you make your installers set REINSTALLMODE=amus files will be overwritten regardless of their version. This would let you run upgrades and downgrades where whomever comes last wins. http://msdn.microsoft.com/en-us/library/aa371182%28v=vs.85%29.aspx - Joel On Nov 26, 2014, at

Re: [WiX-users] Need to support Downgrade installs

2014-11-26 Thread Joel Budreau
-users@lists.sourceforge.net Subject: [WiX-users] Need to support Downgrade installs I need to allow Downgrading installations. This is for an internal application where a user may need to install version N over version N+1. Yes, I know this is frowned upon, but management insists. We need

Re: [WiX-users] Need to support Downgrade installs

2014-11-26 Thread Rich Fowler
, November 26, 2014 12:04 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Need to support Downgrade installs I need to allow Downgrading installations. This is for an internal application where a user may need to install version N over version N+1. Yes, I know this is frowned upon

Re: [WiX-users] Need to support Downgrade installs

2014-11-26 Thread Rich Fowler
Hi John, Thanks so much for the quick response. I've seen some comments before about REINSTALLMODE-amus, but there were serveral cautions around it. In particular, my real install also includes a few redistributables (msm files). Guess it it time to research amus further. Again, Thank You On

Re: [WiX-users] Need to support Downgrade installs

2014-11-26 Thread David Connet
Another approach would be to just throw up your hands and say I can't upgrade from that. Force the users to uninstall before your install. Then the old version is removed. And the new one comes in cleanly. Assuming the old one uninstalls cleanly! Very user-hostile however... Dave On

Re: [WiX-users] Need to support Downgrade installs

2014-11-26 Thread Rich Fowler
I would love to force the user to do the uninstall. But requirements dictate otherwise. I am pursuing the suggestion to set the REINSTALLMODE property -- AND see if I can remove the Redist MSMs from my install. After all, this is strictly for in-house use. Thanks for replying! Rich On Wed,

Re: [WiX-users] Need to support Downgrade installs

2014-11-26 Thread Phil Wilson
You have a majorupgrade element as well as an upgrade element. I'm not sure why. A single majorupgrade element with AllowDowngrades=yes should suffice. You should also post the entire log. --- Phil Wilson On Wed, Nov 26, 2014 at 11:14 AM, Rich Fowler richwfow...@gmail.com wrote: I