Re: [WiX-users] XmlFile element not using updated property value

2008-11-28 Thread Rob Mensching
Probably need to make the Property Secure so it moves from the client to the server during the install process. -Original Message- From: ajay [mailto:[EMAIL PROTECTED] Sent: Friday, November 28, 2008 06:03 To: wix-users@lists.sourceforge.net Subject: [WiX-users] XmlFile element not using

Re: [WiX-users] Merge Module Problem

2008-11-28 Thread Rob Mensching
Are the source files there? It sounds like you might want all of the files compressed, so make sure your Package/@Compress attribute is set as you expect. -Original Message- From: Chris Matthews [mailto:[EMAIL PROTECTED] Sent: Friday, November 28, 2008 07:32 To: General discussion for Wi

Re: [WiX-users] declaring dependencies between components

2008-11-28 Thread Rob Mensching
1. Sorry, should have mentioned groups of groups was only supported in v3. 2. Yep, you are experiencing the magic of "flattening". Just don't make any cycles. -Original Message- From: Wim Coenen [mailto:[EMAIL PROTECTED] Sent: Thursday, November 27, 2008 18:21 To: General discussion

Re: [WiX-users] Uninstall fails when callingNetFxScheduleNativeImage

2008-11-28 Thread John Vottero
I used the "Creating MSIHANDLE" and Closing MSIHANDLE" log messages to work my way through the source code for SchedNetFx. The MSI handles all seem to make sense, from the log I can see that it is reading two records from the NetFxNativeImage table and that's what I have in the table. In the l

[WiX-users] Merge Module Problem

2008-11-28 Thread Chris Matthews
Hi, I am trying to install some merge modules in a converted Installshield project. I have the following in my wix file:- When I am going through the install procedure I get the following problem when installing the first f

[WiX-users] XmlFile element not using updated property value

2008-11-28 Thread ajay
Hi Everybody, I have property to select "Locale" which is then used to update the config file. In the UI for my setup program, I have a dialog that asks the user to update the value of this property from combo box. When the user selects an updated valu

[WiX-users] Install Power Shell snappin failed.

2008-11-28 Thread sandun css
Hi, I was trying to install a powershell snapping using wix. So I added 'xmlns:ps="http://schemas.microsoft.com/wix/PSExtension";' and wrote some code like this, But, When I install the msi, it doesn't install the snappin.

[WiX-users] Problem with more then one SetProperty line with same id

2008-11-28 Thread Christian Wernung - Simtra AeroTech AB
Hi, I want to set a property to different values depending on some condition. When I try the following: CONDITION_ONE CONDITION_TWO I get the error: error LGHT0091: Duplicate symbol 'CustomAction:SetPROP' found. I am using the latest Wix3 build. The problem seems to be that wix gives the CA a

Re: [WiX-users] Overwrite GAC Assembly

2008-11-28 Thread Eitan Behar
Hi Sujanakar, The DLL will be replaced in the GAC if the file assembly version is newer. Notice that the WIX default is to include only the assembly version. Use the linker option -fv - If you are using Visual Studio, open the project properties, go to Tools, and add -fv for the linker. Regards

[WiX-users] Overwrite GAC Assembly

2008-11-28 Thread sujanakar reddy
Hi, I am developing an installer using Wix3, I want to deploy an Assembly to GAC thru my isntaller. The problem is the installer is not installing the assembly to GAC, if it already exist. I want to uninstall the existing assembly and install the one shipped with my application to GAC. Here