Re: [WiX-users] How to not launch install if previous version not found?

2014-05-06 Thread Nick Ramirez
Upgrades are used to find and replace previously installed files. But if there's nothing to replace, there's nothing to say the install can't continue as a fresh install. If you need to not run the installer at all if a previous install isn't there then try using a launch condition

Re: [WiX-users] How to not launch install if previous version not found?

2014-05-06 Thread Edward Sutton
Hi Nick, Thank you for your reply. I think that is a better fit. I have also thought IExpress and VBScript might be a simpler approach. I admit what I am doing is unusual. I have an old pre-Vista legacy app that used HKEY_LOCAL_MACHINE to store product key registration information. Under

Re: [WiX-users] How to not launch install if previous version not found?

2014-05-06 Thread Phil Wilson
This may no longer be an option, but an external manifest to that exe would disable its virtualization and make it require elevation. http://blogs.msdn.com/b/patricka/archive/2009/12/09/answers-to-several-application-manifest-mysteries-and-questions.aspx --- Phil Wilson On Tue, May

[WiX-users] How to not launch install if previous version not found?

2014-05-02 Thread Edward Sutton
I created an upgrade containing an updated DLL that replaces a previous version. How can I make the install require a previous version has been installed? Is that not the purpose of Upgrade? I cannot get it to work as expected. The upgrade is happy to launch without the previous version

Re: [WiX-users] How to not launch install if previous version not found?

2014-05-02 Thread Edward Sutton
(Sorry for re-post, the example Minimum and Maximum did not match my description.) I created an upgrade containing an updated DLL that replaces a previous version. How can I make the install require a previous version to be installed? Is that not the purpose of Upgrade? I cannot get it to