Re: [WiX-users] burn and upgrades

2015-03-02 Thread Steve-Ogilvie
is there a way in the burn.sln to detect if it is an upgrade or not? sample code I am using: // ** Is Bootstrapper EXE running? PROCESSENTRY32 entry; entry.dwSize = sizeof(PROCESSENTRY32); hSnapShot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, NULL); int iCount =

Re: [WiX-users] burn and upgrades

2015-03-02 Thread Rob Mensching
: wix-users@lists.sourceforge.net Subject: [WiX-users] burn and upgrades Hi folks, quick question... MSI can use the property "WIX_UPGRADE_DETECTED" to determine if an upgrade is in progress, does burn have a similar property to determine if an upgrade is happening with the Bootstrappe

[WiX-users] burn and upgrades

2015-03-02 Thread Steve-Ogilvie
Hi folks, quick question... MSI can use the property "WIX_UPGRADE_DETECTED" to determine if an upgrade is in progress, does burn have a similar property to determine if an upgrade is happening with the Bootstrapper? if not then what is the point of having the UpgradeCode in the bundle? thanks,

Re: [WiX-users] Burn and Upgrades

2012-10-01 Thread Christian Hausknecht
ching.com] Gesendet: Montag, 1. Oktober 2012 06:12 An: General discussion for Windows Installer XML toolset. Betreff: Re: [WiX-users] Burn and Upgrades No. Why do you need min-max version restrictions? Today, if you have multiple Bundles with the same UpgradeCode, the higher version upgrades the

Re: [WiX-users] Burn and Upgrades

2012-09-30 Thread Rob Mensching
No. Why do you need min-max version restrictions? Today, if you have multiple Bundles with the same UpgradeCode, the higher version upgrades the lower versions. You can also upgrade other Bundle's UpgradeCodes by adding a RelatedBundle with the Action='upgrade' and the Id='UpgradeCodeOfOtherBundl

[WiX-users] Burn and Upgrades

2012-09-28 Thread Christian Hausknecht
Hello folks, is there anything in Burn that provides a possibility to define a minimum and a maximum bundle version for and upgrade like the -Tags in WiX? And if not is there a way to handle a check without writing a custom BA? Overall what is the exact behavior of a bundle that recognizes that