Re: [WiX-users] Preventing 'v1.0.0.1' install when v1.0.0.0 is present...

2014-01-08 Thread Tony
o:yellowjacketl...@gmail.com] > Sent: Wednesday, January 8, 2014 8:41 AM > To: General discussion about the WiX toolset. > Subject: Re: [WiX-users] Preventing 'v1.0.0.1' install when v1.0.0.0 is > present... > > I was aware of the Windows Installer limitation, unfortun

Re: [WiX-users] Preventing 'v1.0.0.1' install when v1.0.0.0 is present...

2014-01-08 Thread David Watson
code and version already each build by the looks of it... -Original Message- From: Tony [mailto:yellowjacketl...@gmail.com] Sent: 08 January 2014 16:41 To: General discussion about the WiX toolset. Subject: Re: [WiX-users] Preventing 'v1.0.0.1' install when v1.0.0.0 is present.

Re: [WiX-users] Preventing 'v1.0.0.1' install when v1.0.0.0 is present...

2014-01-08 Thread Carter Young
While the approach I gave earlier is doable, I tend to agree here in the DevLab only. When Going into Production, just downgrade the Build Number to the last stable build, and whatever else you add... The approach from earlier adds overhead, and won't be needed in the production WiX file.

Re: [WiX-users] Preventing 'v1.0.0.1' install when v1.0.0.0 is present...

2014-01-08 Thread Rob Mensching
nting 'v1.0.0.1' install when v1.0.0.0 is present... While the approach I gave earlier is doable, I tend to agree here in the DevLab only. When Going into Production, just downgrade the Build Number to the last stable build, and whatever else you add... The approach from earlier add

Re: [WiX-users] Preventing 'v1.0.0.1' install when v1.0.0.0 is present...

2014-01-08 Thread David Connet
> >Sent: Wednesday, January 8, 2014 8:40 AM >Subject: Re: [WiX-users] Preventing 'v1.0.0.1' install when v1.0.0.0 is >present... > > >I was aware of the Windows Installer limitation, unfortunately, our daily >builds do not touch the first three parts of the versio

Re: [WiX-users] Preventing 'v1.0.0.1' install when v1.0.0.0 is present...

2014-01-08 Thread Christopher Painter
iX-users] Preventing 'v1.0.0.1' install when v1.0.0.0 is present... I was aware of the Windows Installer limitation, unfortunately, our daily builds do not touch the first three parts of the version, so in our dev labs we have to "remember" to uninstall first. Most folks know

Re: [WiX-users] Preventing 'v1.0.0.1' install when v1.0.0.0 is present...

2014-01-08 Thread Christopher Painter
8:41 AM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] Preventing 'v1.0.0.1' install when v1.0.0.0 is present... I was aware of the Windows Installer limitation, unfortunately, our daily builds do not touch the first three parts of the version, so in our dev lab

Re: [WiX-users] Preventing 'v1.0.0.1' install when v1.0.0.0 is present...

2014-01-08 Thread Rob Mensching
Personally, I'd update the build to change the build number (3rd field). -Original Message- From: Tony [mailto:yellowjacketl...@gmail.com] Sent: Wednesday, January 8, 2014 8:41 AM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] Preventing 'v1.0.0.1

Re: [WiX-users] Preventing 'v1.0.0.1' install when v1.0.0.0 is present...

2014-01-08 Thread Tony
I was aware of the Windows Installer limitation, unfortunately, our daily builds do not touch the first three parts of the version, so in our dev labs we have to "remember" to uninstall first. Most folks know this, but with several new folks coming onboard and contractors helping here and there, w

Re: [WiX-users] Preventing 'v1.0.0.1' install when v1.0.0.0 is present...

2014-01-08 Thread Rob Mensching
The Windows Installer chooses not to recognize the revision (the fourth build version) in major upgrades. -Original Message- From: Tony [mailto:yellowjacketl...@gmail.com] Sent: Wednesday, January 8, 2014 7:36 AM To: WiX Users Subject: [WiX-users] Preventing 'v1.0.0.1' install when v1.0.

Re: [WiX-users] Preventing 'v1.0.0.1' install when v1.0.0.0 is present...

2014-01-08 Thread Carter Young
Try using a Registry Install Constraint: In 1.0.0.0, add a Version Number Subkey, ie. HKLM\VendorName\Software, containing String Values Named: Major Version Minor Version Build Number Etc Set the values appropriately. In the upgrade install, test the major version and build number, ie CONDI