Re: [WiX-users] Globalized Bundle?

2012-01-09 Thread Ian Williams
Merging threads; just ensuring my reply doesn't get lost. Thanks. -Original Message- From: Ian Williams [mailto:iawil...@microsoft.com] Sent: Monday, January 09, 2012 11:15 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Globalized Bundle? Hmm, I'm a

Re: [WiX-users] X64 issue on uninstall

2012-01-09 Thread Wilson, Phil
That log extract is not necessarily anything to do with the problem. 1. Was the service executable removed? 2. Was the service entry removed from the service applet. 3. Are you using ServiceInstall elements to install/uninstall the service? 4. What does the log say about the component state (as

[WiX-users] Combobox dropdown

2012-01-09 Thread Scharp, Craig
Hi wix users, I have a custom dialog where I use a ComboBox dropdown with a list of websites to upgrade. My immediate ca's populate the Combobox fine but when I click on the combobox to change selection, it doesn't do anything. I can change the values using the up/down arrows, but clicking on

Re: [WiX-users] Concatenate 2 values

2012-01-09 Thread Mike Rerick
Use a custom action to set the Property. In the InstallExecuteSequence, call the custom action: Set the Before or After attribute to wherever you want the value set. Mike On Mon, Jan 9, 2012 at 1:07 PM, Bourne, Kevin < kevin.bou...@chasepaymentech.com> wrote: > Says "Could not access ne

Re: [WiX-users] Concatenate 2 values

2012-01-09 Thread Bourne, Kevin
Says "Could not access network location [IISROOT]\website1" IISROOT should equal c:\inetpub\wwwroot Kevin Bourne | Software Developer | Chase Paymentech .. kevin.bou...@chasepaymentech.com JPMorgan Chase & Co. -Original Message- From: Ian Williams [mailto:iawil...@microsoft.com] Sent:

Re: [WiX-users] Globalized Bundle?

2012-01-09 Thread Rob Mensching
We do LCID because we still support WinXP SP2 On Mon, Jan 9, 2012 at 3:46 AM, Sam Morris wrote: > On Sat, 07 Jan 2012 08:50:15 -0800, Rob Mensching wrote: > > > The wixstdba will automatically search for a .wxl file of the system > > language (i.e. look in 1033 directory for english and 1041 for

Re: [WiX-users] Concatenate 2 values

2012-01-09 Thread Ian Williams
I believe you are mixing WiX preprocessor variables with runtime properties. Your property IISROOT should be accessed using the following syntax: [IISROOT] You are using the preprocessor syntax: $(var.IISROOT). Try [IISROOT] there instead. Ian -Original Message- From: Bourne, Kevin [ma

Re: [WiX-users] Concatenate 2 values

2012-01-09 Thread Bourne, Kevin
Here is the error error CNDL0150: Undefined preprocessor variable '$(var.IISROOT)'. Kevin Bourne | Software Developer | Chase Paymentech kevin.bou...@chasepaymentech.com JPMorgan Chase & Co. -Original Message- From: Bourne, Kevin Sent: Monday, January 09, 2012 3:40 PM To: wix-users

[WiX-users] Concatenate 2 values

2012-01-09 Thread Bourne, Kevin
I need to Concatenate 2 values, can someone tell me how to do this? Sample code does not work. Installed OR IISROOT Kevin Bourne | Software Developer Lead | Chase Paymentech . kevin.bou...@chasepaymentech.com

Re: [WiX-users] Globalized Bundle?

2012-01-09 Thread Ian Williams
Hmm, I'm a bit confused here. I'm under the impression that originally .wxl files were used for an MSI in conjunction with a few options passed to light.exe (-cultures:ja-jp -loc ). And what you get it a Japanese localized MSI (this is all compiled into it). You're saying that the WixStdBA wil

[WiX-users] Changing Directory/Component/File IDs into friendly names

2012-01-09 Thread Dan Gough
Hi, First time WiX user, just generated my first output today from heat.exe for a fairly large installer I am working on. Does anybody know of any script or other means to convert the unique IDs generated for directories, files and components into more friendly names? Thanks, Dan ---

Re: [WiX-users] creating a WIX small or minor patch

2012-01-09 Thread Peter Shirtcliffe
This goes in the Patch element. -Original Message- From: tome...@qualisystems.com [mailto:tome...@qualisystems.com] Sent: 09 January 2012 15:31 To: wix-users@lists.sourceforge.net Subject: [WiX-users] creating a WIX small or minor patch HI all, I'm having p

[WiX-users] creating a WIX small or minor patch

2012-01-09 Thread tomer.c
HI all, I'm having problems creating a WIX small or minor patch... My wsx files that I use to create the installation use HeatDirectory to harvest the files I need to put in my MSI (I'm not using cab, it's in a folder besides the MSI), anyway, I have 2 versions of the installation MSI and the wix

Re: [WiX-users] Help Uninstall

2012-01-09 Thread Yannick
Hi, sorry for my late answer. I've solve my issue myself. There were some mistakes on my settings. Thanks. -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Help-Uninstall-tp7147009p7167644.html Sent from the wix-users mailing list archive at Nabble.

[WiX-users] X64 issue on uninstall

2012-01-09 Thread Yannick
Hi, I'm using Wix to install my application. On a 32 bit compurer, install and uninstall are going well. On a 64 bit computer, install process is running well but I've got the following message when uninstalling and so, some files (and service) remain on the machine. (part of my log) MSI (s) (B0

Re: [WiX-users] Globalized Bundle?

2012-01-09 Thread Sam Morris
On Sat, 07 Jan 2012 08:50:15 -0800, Rob Mensching wrote: > The wixstdba will automatically search for a .wxl file of the system > language (i.e. look in 1033 directory for english and 1041 for german > and 1044 for japanese, or are those last two switched?). > > Failing to find a matching .wxl fi

Re: [WiX-users] RemoveExistingProducts after the InstallFinalize action still needed so that Major Upgrades don't remove assembly from GAC ?

2012-01-09 Thread CristianG
Thanks for mentioning those hotfixes. In the end I've included them in the bootstrapper. It seems to be the right way compared to increasing the file version of the assemblies. -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/RemoveExistingProducts