[WiX-users] How to set Burn.exe FileVersion and ProductVersion differently?

2015-02-13 Thread Farrukhw
Hi Our finally generated Burn.exe file got same versions for FileVersion and ProductVersion. However, version scheme followed in our team suggests ProductVersion as 2015.0. As FileVersion is coming from Version attribute of Bundle element, Is there any way to set ProductVersion property of

Re: [WiX-users] [WIX]: UAC message display behavior in WIX

2015-02-13 Thread Dileep S
Thank you for the information. Launch - UAC - Install. This is the behavior of MSI package. Is there any specification about MSI package for displaying UAC before execute install sequence? If yes, can you please provide me that link. Thanks in advance. On Mon, Feb 9, 2015 at 11:41 PM, Phil

Re: [WiX-users] Restart Manager failed to open session

2015-02-13 Thread Phill Hogland
Prior to 3.10.0.1403 (?) if an app is running in a different user context than the setup, (i.e. app running under LocalServices) then the wix RestartManager code in src\libs\dutil\rmutil.cpp (::RmuAddProcessById) failed, which resulted in the setup doing a rollback, because OpenProcessToken did

Re: [WiX-users] How to set Burn.exe FileVersion and ProductVersion differently?

2015-02-13 Thread Anirban Paul
Hi Please remove my mail I'd from your list. I want to unsubscribe. Regards, Anirban On Feb 13, 2015 10:21 PM, Rob Mensching r...@firegiant.com wrote: Not today. -Original Message- From: Farrukhw [mailto:farru...@gmail.com] Sent: Friday, February 13, 2015 02:25 To:

[WiX-users] Lux Multi-value Unit Test

2015-02-13 Thread Phill Hogland
I am making progress in understanding the use of Lux/Nit. When I create a tests which read my custom table, and evaluate a single value property or an Expression element I have success (or failure if desired Smile/), but I am having difficulty using the Multi-value pattern. In my CA under test,

Re: [WiX-users] How to set Burn.exe FileVersion and ProductVersion differently?

2015-02-13 Thread Rob Mensching
Not today. -Original Message- From: Farrukhw [mailto:farru...@gmail.com] Sent: Friday, February 13, 2015 02:25 To: wix-users@lists.sourceforge.net Subject: [WiX-users] How to set Burn.exe FileVersion and ProductVersion differently? Hi Our finally generated Burn.exe file got same

Re: [WiX-users] Restart Manager failed to open session

2015-02-13 Thread Sascha Sertel
@Jeremiah: Yes I read pretty much everything on RestartManager that there is to find, but I don't even have any custom restart manager code. I am using my own MBA, but the RestartManager stuff is handled by WiX, I only respond to the file in use notification. However, when the RestartManager fails

Re: [WiX-users] Restart Manager failed to open session

2015-02-13 Thread Jeremiahf
Hi Sascha, Sorry to ask more questions but is some of the info you provided from a verbose log output? Have you done a system comparison between the one machine that had a successful installation vs. the target machine that has the issue? J On Fri, Feb 13, 2015 at 12:53 PM, Sascha Sertel

Re: [WiX-users] [WIX]: UAC message display behavior in WIX

2015-02-13 Thread Phil Wilson
The only way to run the UI sequence in elevated mode is to run it (in a CreateProcess way that transfers privilege) from an elevated process, such as an executable with an elevation manifest. --- Phil Wilson On Fri, Feb 13, 2015 at 12:19 AM, Dileep S dileep.sanamp...@gmail.com wrote:

[WiX-users] Using a WiX Selection Tree control, when I select Feature 1, I want Feature 2 to be selected automatically

2015-02-13 Thread Gary Henry
I have three features in a Selection Tree control. I would like Feature 2 and 3 to be independently selected and installed but if Feature 1 is selected to be installed I want Feature 2 to be automatically selected since Feature 1 depends on it. When my Selection Tree is displayed I see:

Re: [WiX-users] Restart Manager failed to open session

2015-02-13 Thread Phill Hogland
Did you see this post http://support.microsoft.com/kb/2570355 ? I did a little searching (as a break from what I should be working on), otherwise I have no expertise to share. From what I read ERROR_SEM_TIMEOUT error message and the wording is a hold-over from floppy drive terminology and is a

Re: [WiX-users] Using a WiX Selection Tree control, when I select Feature 1, I want Feature 2 to be selected automatically

2015-02-13 Thread Hoover, Jacob
Shouldn't it be [-] All Features [x] Feature 1 (requires Feature 2) [x] Feature 2 [x] Feature 3 And Feature Id=ProductFeature Title=All Features Display=expand Level=1 Feature Id=Feature1 ConfigurableDirectory=APPLICATIONFOLDER

Re: [WiX-users] Using a WiX Selection Tree control, when I select Feature 1, I want Feature 2 to be selected automatically

2015-02-13 Thread David Connet
- Original Message - From: Hoover, Jacob jacob.hoo...@greenheck.com To: General discussion about the WiX toolset. wix-users@lists.sourceforge.net Cc: Sent: Friday, February 13, 2015 3:04 PM Subject: Re: [WiX-users] Using a WiX Selection Tree control, when I select Feature 1, I

Re: [WiX-users] Restart Manager failed to open session

2015-02-13 Thread Sascha Sertel
Yes I stumbled across this when I searched for the error code, and I immediately thought that it might not be an actual timeout but some kind of resource starvation. The machine that exposes this issue is pretty beefy and runs on two latest generation Xeon 6-core processors with 32 GB of RAM, so

Re: [WiX-users] Restart Manager failed to open session

2015-02-13 Thread Sascha Sertel
Yes I have looked at both the verbose log output from a working vs. the failing machine, and compared any system parameters I could think of, but nothing sticks out as a potential culprit for this. I've been trying to get more info on what possible reasons could make the RestartManager open

Re: [WiX-users] Using a WiX Selection Tree control, when I select Feature 1, I want Feature 2 to be selected automatically

2015-02-13 Thread Gary Henry
I am fine with using custom actions, I just could not find a way to specify in the custom action that if Feature 1 is selected to automatically select Feature 2. Is there a way in a custom action to set a value that will do this and if so, what is the syntax of how to set it? -Original

Re: [WiX-users] Using a WiX Selection Tree control, when I select Feature 1, I want Feature 2 to be selected automatically

2015-02-13 Thread Gary Henry
Actually what I want is for all the features to be at the same level. If I set it up like Jacob suggests then the first screen that I see shows the following with Feature 2 hidden: [-] All Features [-] Feature 1 (requires Feature 2) [x] Feature 3 I know I could expand

Re: [WiX-users] Using a WiX Selection Tree control, when I select Feature 1, I want Feature 2 to be selected automatically

2015-02-13 Thread David Connet
The hierarchical nature of the tree enforces dependencies. Otherwise, you have to use custom actions. I remember doing that at a previous company and it was a pain. Dave - Original Message - From: Gary Henry gary.he...@microfocus.com To: General discussion about the WiX toolset.

[WiX-users] How to silently uninstall old bundle when major upgrade happens?

2015-02-13 Thread sky
When my custom bootstrapper runs with '/uninstall' switch, it shows a message box for confirmation of uninstallation. And when my bootstrapper does major upgrade it uninstalls old bundle showing the very message box for confirmation(and I have to click Yes to uninstall the old bundle). It seems

[WiX-users] How can I implement mutually exclusive bundles?

2015-02-13 Thread sky
Hi. I want to implement some logic for mutually exclusive bundles. For example, if two bundles A and B are mutually exclusive, and I install B onto A, then B shows a message box that says [A] is already installed in this system. This product cannot be installed side by side with [A]. Do you want

Re: [WiX-users] How to set Burn.exe FileVersion and ProductVersion differently?

2015-02-13 Thread Farrukhw
ahh. So it might be me who has to write a utility to modify PE...  On Feb 13, 2015 9:45 PM, Rob Mensching-7 [via Windows Installer XML (WiX) toolset] ml-node+s687559n7599207...@n2.nabble.com wrote: Not today. -- View this message in context:

Re: [WiX-users] How to set Burn.exe FileVersion and ProductVersion differently?

2015-02-13 Thread Farrukhw
ahh. So it might be me who has to write a utility to modify PE... -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/How-to-set-Burn-exe-FileVersion-and-ProductVersion-differently-tp7599204p7599225.html Sent from the wix-users mailing list archive