Re: [WiX-users] How to refer WIX properties within .wxs files

2010-11-18 Thread Pally Sandher
To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] How to refer WIX properties within .wxs files I have distinct installers for x86 and x64. A preprocessor selects and initializes the platform specific ProgramFilesFolder. I can hard code the Manufacturer and the ProductName directories but

Re: [WiX-users] How to refer WIX properties within .wxs files

2010-11-18 Thread Umeshj
Park, Glasgow G20 0SP Email Disclaimer -Original Message- From: Umeshj [mailto:[hidden email]] Sent: 18 November 2010 07:21 To: [hidden email] Subject: Re: [WiX-users] How to refer WIX properties within .wxs files I have a similar problem. However, this solution does not seem to

Re: [WiX-users] How to refer WIX properties within .wxs files

2010-11-18 Thread Pally Sandher
Registered Office - Helix Building, West Of Scotland Science Park, Glasgow G20 0SP Email Disclaimer -Original Message- From: Umeshj [mailto:umesh_jogle...@hotmail.com] Sent: 18 November 2010 07:21 To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] How to refer WIX properties wit

Re: [WiX-users] How to refer WIX properties within .wxs files

2010-11-17 Thread Umeshj
ishwajit Walke wrote: > > Thanks Nick. It worked for me !! > > -Vishwajit > > -Original Message- > From: Nick Ramirez [mailto:nickra...@hotmail.com] > Sent: Thursday, September 16, 2010 7:31 PM > To: wix-users@lists.sourceforge.net > Subject: Re: [WiX-us

Re: [WiX-users] How to refer WIX properties within .wxs files

2010-09-20 Thread Vishwajit Walke
Thanks Nick. It worked for me !! -Vishwajit -Original Message- From: Nick Ramirez [mailto:nickra...@hotmail.com] Sent: Thursday, September 16, 2010 7:31 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] How to refer WIX properties within .wxs files Oops. Replace Value

Re: [WiX-users] How to refer WIX properties within .wxs files

2010-09-17 Thread Bob Arnson
On 16-Sep-10 09:58, Nick Ramirez wrote: > 2. Use the CustomAction element with Id, Directory and Value attributes to > set the path of the directory during the Execute sequence Or SetDirectory. -- sig://boB http://joyofsetup.com/ --

Re: [WiX-users] How to refer WIX properties within .wxs files

2010-09-16 Thread Nick Ramirez
Oops. Replace Value="[VirtualDirectoriesdir]INSTALL_SHAREPOINT_PORT" with Value="[VirtualDirectoriesdir][INSTALL_SHAREPOINT_PORT]" -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/How-to-refer-WIX-properties-within-wxs-files-tp5537053p5538585.htm

Re: [WiX-users] How to refer WIX properties within .wxs files

2010-09-16 Thread Nick Ramirez
I think you're on the right track. The Name attribute on the Directory element can't use the [PROPERTY_NAME] notation because it isn't a "formatted string" field. Examples of attributes that are include the Text attribute on the Control element, the Title on Dialog, and Message on Condition. If y

Re: [WiX-users] How to refer WIX properties within .wxs files

2010-09-16 Thread Michael_A
I don't think you can use a property in that attribute. The Attribute "name" is defined as a LongFileNameType. Which is described as follows: Values of this type will look like: "Long File Name.extension". Legal long names contain no more than 260 characters and must contain at least one non-peri

[WiX-users] How to refer WIX properties within .wxs files

2010-09-15 Thread Vishwajit Walke
Hi, There is a specific requirement of copying a xml file "ClientAccessPolicy.xml" to the path "C:\Inetpub\wwwroot\wss\VirtualDirectories\InstallationPortNumber". The only thing I'm stuck at is how to refer the WIX Property "INSTALL_SHAREPOINT_PORT" in the highlighted region below :