Re: [WiX-users] MsiSetFeatureState doesn't seem to be working

2015-05-21 Thread Joel Budreau
MsiSetInstallLevel will set the InstallLevel for the entire MSI, but not for the feature. I was hoping that I could have a feature’s default InstallLevel be set to ‘0’, and altered later as the user makes choices in the UI (or on the command-line)... > On May 21, 2015, at 1:00 PM, Phil Wilson w

Re: [WiX-users] MsiSetFeatureState doesn't seem to be working

2015-05-21 Thread Phil Wilson
Maybe MsiSetInstalLevel()? --- Phil Wilson On Wed, May 20, 2015 at 5:38 PM, Joel Budreau wrote: > Hmm, turns out that MsiSetFeatureState() won’t actually install a feature if > the feature had it’s InstallLevel set to ‘0’ by the Condition table. > > Now, to find out if there’s a way

Re: [WiX-users] MsiSetFeatureState doesn't seem to be working

2015-05-20 Thread Joel Budreau
Hmm, turns out that MsiSetFeatureState() won’t actually install a feature if the feature had it’s InstallLevel set to ‘0’ by the Condition table. Now, to find out if there’s a way to set a feature’s InstallLevel through a custom action… > On May 20, 2015, at 7:40 PM, Joel Budreau wrote: > > J