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

[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
Is OLDERVERSIONBEINGUPGRADED a pre-defined thing or just used as a comment? I have no matching Property named OLDERVERSIONBEINGUPGRADED. Thanks, -Ed From: Edward Sutton Sent: Friday, May 02, 2014 1:30 PM To: wix-users@lists.sourceforge.net Subject: How to not launch install if previous version not found? I

Re: [WiX-users] [SPAM] Re: How implement installer to update single file ? Upgrade? Patch?

2014-05-01 Thread Edward Sutton
it is a valid Windows installer patch. Thanks in advance for any tips or suggestions, -Ed -Original Message- From: Edward Sutton Sent: Monday, April 28, 2014 2:41 PM To: 'General discussion about the WiX toolset.' Subject: RE: [WiX-users] [SPAM] Re: How implement installer to update

Re: [WiX-users] How implement installer to update single file ? Upgrade? Patch?

2014-04-28 Thread Edward Sutton
-Original Message- From: Phill Hogland [mailto:phogl...@rimage.com] Sent: Friday, April 25, 2014 11:30 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] How implement installer to update single file ? Upgrade? Patch? If you have the old MSI, there are a couple of options

Re: [WiX-users] How implement installer to update single file ? Upgrade? Patch?

2014-04-28 Thread Edward Sutton
Thank you Phil. I am trying the Using Patch Creation Properties approach. I made two subfolders, 3.8.1 contained only the original DLL I wished to replace, and 3.8.2 the updated DLL. http://wixtoolset.org/documentation/manual/v3/patching/patch_building.html Should both UpgradeCode and Product

Re: [WiX-users] [SPAM] Re: How implement installer to update single file ? Upgrade? Patch?

2014-04-28 Thread Edward Sutton
Are there others experienced in patching/updating that can share an example or offer advice? I followed the Using Patch Creation Properties tutorial which installs an updated sample.txt file. This worked well. http://wixtoolset.org/documentation/manual/v3/patching/patch_building.html

[WiX-users] How implement installer to update single file ? Upgrade? Patch?

2014-04-25 Thread Edward Sutton
Can this be done as an upgrade, replacing a single DLL file without removing the previous install? Or is what I am trying to do better implemented as a patch? I do not have source code for original installer - only the MSI. Background --- This is a C++ application using 2008