[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] How to put '\"' in the customaction as it is ?

2006-08-24 Thread Chandra Rentachintala
Thanks for the suggestion, but doing that caused the failure of schtasks With 1631 error. Thanks for the " suggestion. But fixing the backslash in square brackets fixed the issue. mailto:[EMAIL PROTECTED] Sent: Wednesday, August 23, 2006 3:32 AM To: Chandra Rentachintala Cc: wix-

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

2006-08-22 Thread Chandra Rentachintala
I am adding a scheduled task thru the installer like this.      ExeCommand=' "schtasks.exe" /Create /RU "[SQLUSERNAME]" /rp [SQLPASSWORD] /SC [CLEANUPFREQUENCY] /ST 01:00:00 /TN "DBCLEANUPTASK" /TR "[#CLEANUP_EXE]" ' />   and it works fine in adding scheduled task, but not st

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 "%WIX

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

2006-07-28 Thread Chandra Rentachintala
m wix list for finding this solution. - chandra -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 incorrect

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

2006-07-11 Thread Chandra Rentachintala
MsiHiddenProperties 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 S

[WiX-users] password is incorrectly set during ServiceInstall

2006-07-07 Thread Chandra Rentachintala
I have my service installed like this and it installs the service correctly, but service is unable to start due to login failure.    

[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 don’t need IIS, this custom action is s

[WiX-users] inheriting permissions on a reg key?

2006-06-14 Thread Chandra Rentachintala
I have to run aspnet_setreg.exe with username/password and a reg key for website permissions. I want to set full control rights to “NETWORK SERVICE” account on this reg key. Aspnet_setreg.exe executable gets copied during install. Permissions are getting overridden By the custom action

[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.

Re: [WiX-users] using UI to change a registry key

2006-06-06 Thread Chandra Rentachintala
  You can have a component like this which points to your Property (ex: LOGPATH)