Re: [WiX-users] How to Change TARGETDIR

2007-12-05 Thread Julie Campbell
From: SaiTeja <[EMAIL PROTECTED]> Subject: [WiX-users] How to Change TARGETDIR To: wix-users@lists.sourceforge.net Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=us-ascii Hi Initially my TARGETDIR fefers to C:\. Following is wix code After that I called Custom

[WiX-users] How to Change TARGETDIR

2007-12-05 Thread SaiTeja
Hi Initially my TARGETDIR fefers to C:\. Following is wix code After that I called Custom action Dll and in dll I setted property PATH to some other drive(Not C drive) Below is code for same Now with new ppty ie PATH, I want to set TARGETDIR as the whatever

Re: [WiX-users] How to change TARGETDIR to e drive

2007-07-30 Thread Pierson Lee (Volt)
r this one) because you're specifying everything prior to the part where it is installing the files and not during the installfiles step. From: Ravit Shapira Sent: Monday, July 30, 2007 2:35 PM To: Pierson Lee (Volt); wix-users@lists.sourceforge.net Subject: RE: Re: [WiX-users] How to change TARGE

Re: [WiX-users] How to change TARGETDIR to e drive

2007-07-30 Thread Ravit Shapira
is it okay to change the property TARGETDIR twice in the same msi? Ravit From: Pierson Lee (Volt) Sent: Thursday, July 26, 2007 11:35 AM To: Ravit Shapira; wix-users@lists.sourceforge.net Subject: RE: Re: [WiX-users] How to change TARGETDIR to e drive You don'

Re: [WiX-users] How to change TARGETDIR to e drive

2007-07-26 Thread Pierson Lee (Volt)
You don't need it as a custom action. Just specify a property e:\ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ravit Shapira Sent: Tuesday, July 24, 2007 11:46 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] How to change TARGETDIR to e drive Hi, I wa

[WiX-users] How to change TARGETDIR to e drive

2007-07-25 Thread Friedrich Brunzema
Ravit, looks like you have a condition on your custom action; I think that TARGETDIR="E:\" means do the custom action only if TARGETDIR="E:\". Try changing this the TARGETDIR="E:\" condition to 1, meaning it will always be executed. Friedrich Hi, I'm trying to change TARGETDIR to e drive.

Re: [WiX-users] How to change TARGETDIR to e drive

2007-07-25 Thread Mailinglist
thing for you either. NOT TARGETDIR Oliver. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ravit Shapira Sent: Mittwoch, 25. Juli 2007 08:46 To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] How to change TARGETDIR to e drive Hi, I want to add to my prev

Re: [WiX-users] How to change TARGETDIR to e drive

2007-07-24 Thread Ravit Shapira
Hi, I want to add to my previous email that if I run the installation using: ">msiexec /i MySetup.msi TARGETDIR=e:\" it does installs what I need under e drive. However, my goal is to run the setup without passing any parameters - simply to double click on the msi file. Thanks, Ravit ___

[WiX-users] How to change TARGETDIR to e drive

2007-07-24 Thread Ravit Shapira
Hi, I'm trying to change TARGETDIR to e drive. I tried to do the following but it installs under c drive. TARGETDIR="E:\" I ran the installation using msiexec and created a log file. I looked for the action: AssignEDir2INSTALLDIR and it says that it is skipped due to false conditio