Re: [WiX-users] 2 questions re build to build stop installing...

2014-06-24 Thread Steve-Ogilvie
thanks David and Rob/Carter some basic testing and I came up with this: Upgrade Id =$(var.Upgrade) UpgradeVersion Property=SAMEFOUND IncludeMaximum=yes IncludeMinimum=yes Minimum=$(var.TCOVersion) Maximum=$(var.TCOVersion) OnlyDetect=yes/ /Upgrade Condition Message=The same version of

[WiX-users] 2 questions re build to build stop installing...

2014-06-23 Thread Steve-Ogilvie
Hi folks, I have 2 questions... (Using WIX 3.8) 1. MSI I would like to stop build to build installs (bring up warning?) i.e. i have 14.4.6.7 installed, then I run today's build which is 14.4.6.8 (the product code is different, the upgrade code is the same) this is my upgrade element:

Re: [WiX-users] 2 questions re build to build stop installing...

2014-06-23 Thread Carter Young
Set the ProductCodes to the same value as 14.4.6.7 in both situations Carter Quoting Steve-Ogilvie steven.ogil...@titus.com: Hi folks, I have 2 questions... (Using WIX 3.8) 1. MSI I would like to stop build to build installs (bring up warning?) i.e. i have 14.4.6.7 installed, then I run

Re: [WiX-users] 2 questions re build to build stop installing...

2014-06-23 Thread Steve-Ogilvie
Our productcodes change build to build (that way when we release a new version the productcode is different, so the new release is an upgrade) So there is no way in WIX with different productcode/same version (diff 4th digit to recognize same version install?) Thanks, Steve From: eyoung100

Re: [WiX-users] 2 questions re build to build stop installing...

2014-06-23 Thread Rob Mensching
12:55 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] 2 questions re build to build stop installing... Our productcodes change build to build (that way when we release a new version the productcode is different, so the new release is an upgrade) So there is no way in WIX

Re: [WiX-users] 2 questions re build to build stop installing...

2014-06-23 Thread Carter Young
The 4th digit is recognized in the Burn Engine but not in the MSI Product.wxs. You must manually write an install condition to check the 4th version number, or use the same product code with an Upgrade condition, ie: If 14.4.6.7 is installed, perform an upgrade install of 14.4.6.8, that

Re: [WiX-users] 2 questions re build to build stop installing...

2014-06-23 Thread Steve-Ogilvie
/SendEmail.jtp?type=nodenode=7595422i=0] Sent: Monday, June 23, 2014 12:55 PM To: [hidden email]/user/SendEmail.jtp?type=nodenode=7595422i=1 Subject: Re: [WiX-users] 2 questions re build to build stop installing... Our productcodes change build to build (that way when we release a new version the productcode

Re: [WiX-users] 2 questions re build to build stop installing...

2014-06-23 Thread David Connet
@lists.sourceforge.net Sent: Monday, June 23, 2014 1:39 PM Subject: Re: [WiX-users] 2 questions re build to build stop installing... I tried with UpgradeVersion Property=SAMEFOUND IncludeMinimum=yes OnlyDetect=yes  IncludeMaximum=yes Maximum= the build number, i.e. 3.5.32.6/ Condition Message