[WiX-users] Minor upgrades if EnableFeatureSelection in bootstrapper.

2014-12-11 Thread Sergey Yukhno
Hello. I enable feature selection by EnableFeatureSelection=yes and control features in own bootstrapper application by OnPlanMsiFeature event. But when processing minor upgrade of msi package property REINSTALL is absent and files don't upgrade (if they not exist in ADDLOCAL property). It is

[WiX-users] Custom Bootstrapper download and install .NET

2014-12-11 Thread khacminh ho
Hi,I am building my custom UI bootstrapper based on Wix toolset v3.8. However, I encountered an issue with download and install .NET 4.5. Here is my Chain: Chain      PackageGroupRef Id=NetFx451Redist/      MsiPackage SourceFile=..\DummyInstaller\bin\Debug\DummyInstaller.msi

[WiX-users] How to install a new user?

2014-12-11 Thread patrickpirzer
I have made a bootstrapper-project with WiX 3.8. The chain includes the installation of the prerequisite SQL Server Express 2012. In the InstallCommand for SQL Server Express i'm using an user and his password. That user must be installed before the prerequisite, so i added to an MsiPackage, which

Re: [WiX-users] How to install a new user?

2014-12-11 Thread Phill Hogland
Every component needs a keypath and if it does not include a File or Registry element it must have a Component/@Directory which implies that you define a directory tree. There is an example directory structure here.

Re: [WiX-users] Install condition is not being set in options dialog [P]

2014-12-11 Thread garymonk
The problem is that I moved the install button from the EULA Welcome dialog to the Options dialog. Because I do not click on the Ok button the variable doesn't get set. Is the best way to handle this is to create a separate dialog for the server option and remove the option dialog altogether?

Re: [WiX-users] Install condition is not being set in options dialog [P]

2014-12-11 Thread Steven Ogilvie
Classification: Public What does your code look like in bundle and theme? -Original Message- From: garymonk [mailto:g...@gurudental.com] Sent: December-11-14 11:51 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Install condition is not being set in options dialog [P]

Re: [WiX-users] Install condition is not being set in options dialog [P]

2014-12-11 Thread garymonk
Here is the bundle... Bundle Name=Guru Teach Installation Version=6.1.0.0 Manufacturer=Guru Dental UpgradeCode=ef8d3106-2b45-4ff2-b95b-3d24b4ef5f2f BootstrapperApplicationRef Id=WixStandardBootstrapperApplication.RtfLicense bal:WixStandardBootstrapperApplication LicenseFile=C:\VS

[WiX-users] Adding SSL certificates to IIS

2014-12-11 Thread wixtester
Hi, I am not able to configure a website to use SSL certificates on IIS 7.5. The logs shows WriteIIS7ConfigChanges: Error 0x80070520: failed to execute AddSslCertificate method WriteIIS7ConfigChanges: Error 0x80070520: Failed to add ssl binding WriteIIS7ConfigChanges: Error 0x80070520:

[WiX-users] Windows Updates - either pending or running causes our installs to fail

2014-12-11 Thread TimM
Does anyone know of a way we can detect if there are pending Windows Updates or currently running Windows Updates?We have seen this issue quite a lot where we have 32 bit assemblies within our installs that get installed and then published near the end of the install. But if there are pending

[WiX-users] Unable to select radio buttons in Hyperlink Theme

2014-12-11 Thread garymonk
I have modified the Hyperlink theme install page to include two radio buttons. Page Name=Install Text X=160 Y=100 Width=-11 Height=17 FontId=3Select software to install/Text Button Name=ClientInstall X=160 Y=130 Width=-11 Height=17 TabStop=yes FontId=3 HexStyle=0x04Guru Teach

Re: [WiX-users] Unable to select radio buttons in Hyperlink Theme

2014-12-11 Thread Sean Hall
It appears that you must declare the radio button Variables in your bundle, and set their values to 0. Then use the BS_AUTORADIOBUTTON HexStyle (9). On Thu, Dec 11, 2014 at 5:44 PM, garymonk g...@gurudental.com wrote: I have modified the Hyperlink theme install page to include two radio