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

2014-12-10 Thread Sean Hall
The logic for which page's controls get saved when you click which button is hardcoded . Clicking the "OptionsButton" or the "InstallButton" saves the "Install" page. Clicking the

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

2014-12-10 Thread garymonk
I do not see anything in the log that shows that the checkbox is being initialized. I copied the variable statement and the checkbox statement from your code and changed the names and I still do not see anything in my log. My log looks like this... [022C:2E6C][2014-12-10T16:51:33]i000: Setting

Re: [WiX-users] WiX toolset EXE Wrapper installer with no files

2014-12-10 Thread John Cooper
Registry will definitely work. I have a bundle with two MSI's--one of which is pure registry. No problem. -- John Merryweather Cooper Senior Software Engineer | Enterprise Service Applications | Continuing Development Jack Henry & Associates, Inc.® | Lenexa, KS  66214 | Ext: 431050 |jocoo...

Re: [WiX-users] WiX toolset EXE Wrapper installer with no files

2014-12-10 Thread js
Yes! I'm using Group Policy software deployment, which requires a MSI. I used a entry but I noticed there are 2 entries for my software in the Programs list in the Control Panel. How do I prevent this? -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.

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

2014-12-10 Thread Steven Ogilvie
Classification: Public I have this in my files: Bundle.wxs: I have them all set to 1 by default so they are all checked by default... To install my 1st Client I have an install condition set: so if it is set to 0 won't install: In my theme file: (in my case I have 3 checkboxes for

Re: [WiX-users] WiX toolset EXE Wrapper installer with no files

2014-12-10 Thread Hoover, Jacob
After the fact I noticed you were trying to create a shim of sorts to have a MSI launch an EXE based install. I can only assume you are using Group Policy software deployment, which requires a MSI based install instead of an exe based install. I don't think you're required to have a file, it c

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

2014-12-10 Thread Hoover, Jacob
Have you tried adding Overridable="true" ? -Original Message- From: garymonk [mailto:g...@gurudental.com] Sent: Wednesday, December 10, 2014 2:24 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Install condition is not being set in options dialog If I set the variable INS

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

2014-12-10 Thread garymonk
If I set the variable INSTALLSERVER to 1 Then the checkbox is checked and the server install starts, but if I check the checkbox in the options dialog it does not set the variable to 1. garymonk wrote > I have modified the RtfLicense theme to include a checkbox. The name of > the checkbox is t

[WiX-users] XmlFile or XmlConfig in patch .msp ?

2014-12-10 Thread roberthyang
Hi all -- we are using Wix 3.8 in both our released product and service pack 1, created via torch/pyro as a .msp. We need to be able to conditionally modify an XML file installed with the released product. I was able to get the patch bootstrapper to show a couple of radiobuttons using a custom

Re: [WiX-users] WiX toolset EXE Wrapper installer with no files

2014-12-10 Thread Hoover, Jacob
Don't do nested/concurrent installs. If your MSI has prerequisites, create a bundle and install them in the chain before your MSI is installed. http://msdn.microsoft.com/en-us/library/aa368010(v=vs.85).aspx "Concurrent Installations, also called Nested Installations, is a deprecated feature of

[WiX-users] WiX toolset EXE Wrapper installer with no files

2014-12-10 Thread js
I have a simple working EXE wrapper in WIX but I don't like that I have to add at least one file for it to work and I can't seem to find a way to not add files to it, is it even possible? http://schemas.microsoft.com/wix/2006/wi";>

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

2014-12-10 Thread garymonk
I have modified the RtfLicense theme to include a checkbox. The name of the checkbox is the same name as the variable name that I use in the install condition. When I execute the bundle and check the checkbox the variable is always false. bundle.was... RtfTheme.xml

Re: [WiX-users] Wix bootstrapper - default value for custom string field

2014-12-10 Thread Sean Hall
Everything about contributing to WiX should be explained here: http://wixtoolset.org/development/ On Wed, Dec 10, 2014 at 4:10 AM, jfish wrote: > Thanks Sean - more of a bug than I feature I would say. :-) > > I have a fix that I'd like to check in. I haven't contributed before - > could you p

Re: [WiX-users] Wix bootstrapper - default value for custom string field

2014-12-10 Thread jfish
Thanks Sean - more of a bug than I feature I would say. :-) I have a fix that I'd like to check in. I haven't contributed before - could you please help me to understand the etiquette around submitting code? Thanks very much Jeff. -- View this message in context: http://windows-installer-xm