What I do is to always maintain the bundle version the same as the main 
msi package...
Also I created a custom wixstdba.dll to which I added:
BOOTSTRAPPER_RELATED_OPERATION_NONE == operation
in OnDetectRelatedBundle():
   if (!m_sczPrereqPackage &&
       BOOTSTRAPPER_RELATED_OPERATION_DOWNGRADE == operation ||
       BOOTSTRAPPER_RELATED_OPERATION_NONE == operation) {
     m_fDowngrading = TRUE;
   }

So that when trying to install the same bundle version, you get an error 
saying that an existing version is already installed, please uninstall 
it first from the control panel bla bla bla.

In this way I don't mix versions, maybe it's not the optimal way, but 
like this, you maintain one version, and in the control panel add/remove 
program, you get the real version of the program, not only the bundle 
version.

I use a own made python script when I create a new version of my 
software/setup, it updates all the places where version is used (exe 
resources, bundle version, product version...) and also the ProductId so 
we can do a msi upgrade.

On 19/12/2012 15:27, faktorx2001 wrote:
> I've the same problem.
>
> I've a bundle v. 1.0.6 with msi v. 1.0.6 installed.
>
> Then I installed a bundle v. 1.0.6 with msi v. 1.0.7 , the upgrade works but
> there's also a second entry in the ARP.
>
> If I install a bundle v. 1.0.7 with msi v. 1.0.7 the upgrade works also but
> after that the bundle uninstalled the older version
>
>
>
> --
> View this message in context: 
> http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/How-to-make-Burn-do-MinorUpgrades-tp7579457p7582464.html
> Sent from the wix-users mailing list archive at Nabble.com.
>
> ------------------------------------------------------------------------------
> LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
> Remotely access PCs and mobile devices and provide instant support
> Improve your efficiency, and focus on delivering more value-add services
> Discover what IT Professionals Know. Rescue delivers
> http://p.sf.net/sfu/logmein_12329d2d
> _______________________________________________
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users


------------------------------------------------------------------------------
LogMeIn Rescue: Anywhere, Anytime Remote support for IT. Free Trial
Remotely access PCs and mobile devices and provide instant support
Improve your efficiency, and focus on delivering more value-add services
Discover what IT Professionals Know. Rescue delivers
http://p.sf.net/sfu/logmein_12329d2d
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to