Re: [WiX-users] Modifying Request State

2015-04-12 Thread Sean Hall
The engine bases the action off of the requested state, there's no way to set the action state. There is no way to modify the requested state of packages from IBootstrapperBAFunction today. On Fri, Apr 3, 2015 at 8:19 AM, Phill Hogland phogl...@rimage.com wrote: The chain is installed from top

Re: [WiX-users] Modifying Request State

2015-04-03 Thread Phill Hogland
The chain is installed from top to bottom and uninstalled from bottom to top. Probably all you need to do is set XxxPackage/@InstallCondiditons so that both packages are installed or uninstalled as a pair with the ExePackage before the MsiPackage in the chain. -- View this message in context:

[WiX-users] Modifying Request State

2015-04-02 Thread Edwin Castro
I'd like to install or uninstall an ExePackage whenever an MsiPackage is selected for install or uninstall. Details: * ExePackage must be installed whenever MsiPackage is selected for install. * ExePackage must be installed before MsiPackage is installed. * ExePackage must be uninstalled whenever

Re: [WiX-users] Modifying Request State

2015-04-02 Thread Edwin Castro
It occurs to me that I don't want to change the ExePackage's request state. Rather I want to change it's action state to the same action state selected for the MsiPackage. Is there a way to get and set package action state? On Thu, Apr 2, 2015 at 2:14 PM, Edwin Castro egca...@gmail.com wrote: