Re: [WiX-users] Updating web.config field value depending on if machine's 64bit or 32bit

2009-07-18 Thread Bob Arnson
Erica Chang (PROJECT) wrote: > It appears that we are still using version 2 of wix, not 3...and so I do not > see WixUtilExtension.dll > > Is there a way to do this in version 2 of wix? > That's where you need to link with wica.wixlib. -- sig://boB http://joyofsetup.com/ -

Re: [WiX-users] Updating web.config field value depending on if machine's 64bit or 32bit

2009-07-14 Thread Erica Chang (PROJECT)
n for Windows Installer XML toolset.' Subject: Re: [WiX-users] Updating web.config field value depending on if machine's 64bit or 32bit If you are using the visual studio plugin "Votive"...to link to wixca.wixlib...add a reference to "WixUtilExtension&

Re: [WiX-users] Updating web.config field value depending on if machine's 64bit or 32bit

2009-07-14 Thread Phil Sayers
Package element contains an unexpected attribute 'Platform' Thanks lots. Erica -Original Message- From: Phil Sayers [mailto:p...@cds-am.net] Sent: Monday, July 13, 2009 1:28 PM To: 'General discussion for Windows Installer XML toolset.' Subject: Re: [WiX-users] Upd

Re: [WiX-users] Updating web.config field value depending on if machine's 64bit or 32bit

2009-07-13 Thread Erica Chang (PROJECT)
hil Sayers [mailto:p...@cds-am.net] Sent: Monday, July 13, 2009 1:28 PM To: 'General discussion for Windows Installer XML toolset.' Subject: Re: [WiX-users] Updating web.config field value depending on if machine's 64bit or 32bit To the best of my knowledge As long as your installer

Re: [WiX-users] Updating web.config field value depending on if machine's 64bit or 32bit

2009-07-13 Thread Don Benson
ft.com] > Sent: Monday, July 13, 2009 12:06 PM > To: General discussion for Windows Installer XML toolset. > Subject: Re: [WiX-users] Updating web.config field value depending on if > machine's 64bit or 32bit > > Keep in mind it's better to avoid XmlFile / XmlConfig an

Re: [WiX-users] Updating web.config field value depending on if machine's 64bit or 32bit

2009-07-13 Thread Phil Sayers
July 13, 2009 3:51 PM To: 'General discussion for Windows Installer XML toolset.' Subject: Re: [WiX-users] Updating web.config field value depending on if machine's 64bit or 32bit What we are doing is installing sample sites that needs the location of the install as environment vari

Re: [WiX-users] Updating web.config field value depending on if machine's 64bit or 32bit

2009-07-13 Thread Erica Chang (PROJECT)
) [mailto:mica...@microsoft.com] Sent: Monday, July 13, 2009 12:06 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Updating web.config field value depending on if machine's 64bit or 32bit Keep in mind it's better to avoid XmlFile / XmlConfig and ju

Re: [WiX-users] Updating web.config field value depending on if machine's 64bit or 32bit

2009-07-13 Thread Mike Carlson (DEV DIV)
mmend it at this point in time. Thanks, Mike Carlson -Original Message- From: Don Benson [mailto:dbenso...@gmail.com] Sent: Monday, July 13, 2009 11:53 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Updating web.config field value depending on if mac

Re: [WiX-users] Updating web.config field value depending on if machine's 64bit or 32bit

2009-07-13 Thread Don Benson
Windows Installer automatically handles translating the ProgramFilesFolder property for 32-bit vs. 64-bit platforms. Are you using an XMLFile element to set the web.config value? Use the [ProgramFilesFolder] property within the XMLFile element, and you should get what you want. - Don Benson - Trib

Re: [WiX-users] Updating web.config field value depending on if machine's 64bit or 32bit

2009-07-13 Thread Phil Sayers
XmlFile is your friend. -Original Message- From: Erica Chang (PROJECT) [mailto:eri...@microsoft.com] Sent: Monday, July 13, 2009 1:59 PM To: 'wix-users@lists.sourceforge.net' Subject: [WiX-users] Updating web.config field value depending on if machine's 64bit or 32bi

[WiX-users] Updating web.config field value depending on if machine's 64bit or 32bit

2009-07-13 Thread Erica Chang (PROJECT)
Hi, I have a field in web.config that needs environment variable of %ProgramFiles% or %ProgramFiles(x86)% depending on if the machine installing is 64 bit or 32 bit. Is there a way to substitute the values during install time by detecting this and setting the appropriate values? Thanks so much