[WiX-users] Setting installer Property value from a SQL DB field?

2006-10-31 Thread Chandra Rentachintala
I need to set a property in our installer by reading it from a SQL database table. I would like to do it during launch condition evaluation before the file copy. Has anyone done this in WIX? Thanks in advance, chandra

Re: [WiX-users] FW: custom actions

2006-09-15 Thread Chandra Rentachintala
Add a condition checking NOT Installed in InstallExecuteSequence/InstallUISequence. Ex: Custom Action=SetARPINSTALLLOCATION After=CostFinalize ![CDATA[NOT Installed]] /Custom From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Saranath Aravamudhan Sent: Friday,

Re: [WiX-users] How to put '\' in the customaction as it is ?

2006-08-24 Thread Chandra Rentachintala
[SQLUSERNAME] /rp [SQLPASSWORD] /SC [CLEANUPFREQUENCY] /ST 01:00:00 /TN DBCLEANUPTASK [\\]quot;[#CLEANUP_EXE][\\]quot;' - chandra -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 23, 2006 3:32 AM To: Chandra Rentachintala Cc: wix-users

Re: [WiX-users] MessageQueue PubCA

2006-08-04 Thread Chandra Rentachintala
From Fredrik Grohn [EMAIL PROTECTED] mail You need to include the PubCA compiler extension on the command line. Here is an example: candle queues.wxs -ext Microsoft.Tools.WindowsInstallerXml.PcaCompiler,pcaext When you link it you also need to include pubca.wixlib: light queues.wixobj

Re: [WiX-users] password is incorrectly set during ServiceInstall

2006-07-28 Thread Chandra Rentachintala
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Chandra Rentachintala Sent: Tuesday, July 11, 2006 10:09 AM To: [EMAIL PROTECTED]; wix-users@lists.sourceforge.net Subject: Re: [WiX-users] password is incorrectly set during ServiceInstall Yes. It has

Re: [WiX-users] password is incorrectly set during ServiceInstall

2006-07-11 Thread Chandra Rentachintala
as a way of not exposing passwords in a log! Phil Wilson From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rob Mensching Sent: Friday, July 07, 2006 6:00 PM To: 'Chandra Rentachintala'; wix-users@lists.sourceforge.net Subject: Re: [WiX-users] password

[WiX-users] conditional disabling ConfigureIIS custom action?

2006-07-05 Thread Chandra Rentachintala
I am using sca.wixlib (wix 2.0) and it comes with ConfigureIIS action in InstallExecuteSequence. Our installation has multiple features and only few of them needs IIS pre-requisite check. Currently when we run the installer with features which dont need IIS, this custom action is

[WiX-users] Launching another msi based on selection of feature

2006-06-08 Thread Chandra Rentachintala
In my installer there are 4 features to customize for a given machine and only one of it depends on a vendor package. I want to run the vendor product msi or setup.exe when that package is not present on the machine and corresponding feature is selected, during my setup sequence.