[WiX-users] Unable to access HTTPS after installing ssl certificate to website

2015-04-28 Thread wixtester
Hi, I am unable to access my website with HTTPS. After install, I see the SSL certificate is installed in the Personal\Certificates store and is also listed in the Server Certificates in IIS manager. But I don't see the certificate listed in the binding window that associates the port,

Re: [WiX-users] Detect condition for a Burn Package ?

2015-04-28 Thread Phill Hogland
With regard to using a Burn bundle in the chain of a Bundle, I did a little experimenting and I defined the RelatedBundle Action=Detect in the parent and Action=Addon or Update in the child. I put logging code on the various RelatedBundle handlers in the mba but I did not need to do any

Re: [WiX-users] Reboot and ReallySuppress

2015-04-28 Thread Henri Hein
Thanks, Phil. Here's a link to the full log file: http://1drv.ms/1JyRdgH I should have mentioned as well that this particular log was from an upgrade, though the problem happens on both upgrades and clean installs (installs where I uninstall first, reboot, then install). Thanks, - Henri

[WiX-users] Reboot and ReallySuppress

2015-04-28 Thread Henri Hein
My installer keeps prompting for a reboot, and I am trying to find out why. I set the Reboot property to 'ReallySuppress' with the following XML: Property Id=REBOOT Value=ReallySuppress / I have run the installer with verbose log, trying to look for the clues listed on this helpful blog post:

Re: [WiX-users] Reboot and ReallySuppress

2015-04-28 Thread Henri Hein
My message went out prematurely, but I think the question is clear enough. Does anyone have any ideas why the reboot might be happening, and how I can really suppress it? There wasn't anything immediately obvious before the last Decrementing counter log line. Thanks, - Henri On Tue, Apr 28,

Re: [WiX-users] Reboot and ReallySuppress

2015-04-28 Thread Phil Wilson
You should probably post a link to the entire log for others to see. For example, I don't know if you've looked at the possibility that a custom action is resetting the REBOOT property somewhere. --- Phil Wilson On Tue, Apr 28, 2015 at 1:15 PM, Henri Hein he...@thinair.com wrote:

[WiX-users] Detect condition for a Burn Package ?

2015-04-28 Thread Marco Tognacci
I have a Burn package (setup1.exe) that have an UpgradeCode={GUID}I have used this exe package inside another Burn setup (setup2.exe), in this package I need to get the DetectCondition for the firt package (setup1.exe) is there any way to get this condition? util:ProductSearch

Re: [WiX-users] Detect condition for a Burn Package ?

2015-04-28 Thread Keith.Douglas
If I understand correctly this is what I asked about many moons ago. What I was told at the time as a possibility - which we implemented - is that one can unbundle and then parse the XML from one of the files: Dim b As New Microsoft.Tools.WindowsInstallerXml.Unbinder Dim out As

Re: [WiX-users] Detect condition for a Burn Package ?

2015-04-28 Thread Rob Mensching
IIRC, there is a feature request open for that. _ Short replies here. Complete answers over there: http://www.firegiant.com/ -Original Message- From: Marco Tognacci [mailto:mark...@live.it] Sent: Tuesday, April 28, 2015 1:55

Re: [WiX-users] Detect condition for a Burn Package ?

2015-04-28 Thread Marco Tognacci
So at this moment, there isn't a way for doing this? From: r...@firegiant.com To: wix-users@lists.sourceforge.net Date: Tue, 28 Apr 2015 21:18:56 + Subject: Re: [WiX-users] Detect condition for a Burn Package ? IIRC, there is a feature request open for that.

Re: [WiX-users] Restart - setting from CA and checking from Custon BA

2015-04-28 Thread ronif
Thanks for your answers! eventually I ended up doing this: from CA: session.SetMode(InstallRunMode.RebootNow, true); return ActionResult.SkipRemainingActions; and from CBA: private void BootstrapperApplication_ExecutePackageComplete(object sender, ExecutePackageCompleteEventArgs

[WiX-users] Installing windows features with wix

2015-04-28 Thread ronif
Hi, Is there a way to install OS features with wix? I am currently doing it with a custom action that uses dism.exe but I was wandering whether a better way exists. Thanks in advance, Roni -- View this message in context:

Re: [WiX-users] Custom Bootstrapper Application - accessing variables set at custom actions

2015-04-28 Thread ronif
Thanks Nir, I didn't know this before, it is indeed helpful. -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Custom-Bootstrapper-Application-accessing-variables-set-at-custom-actions-tp7600107p7600119.html Sent from the wix-users mailing list

Re: [WiX-users] Installing windows features with wix

2015-04-28 Thread Phill Hogland
Other than the versions of .Net supported by NetFxExtension, I do not think there is any specific support in wix. I prefer fondue.exe in the situations where it is supported because it does not fail in scenarios where dism.exe just errors out. However my CA drops back to using dism.exe for other