Re: [WiX-users] Bug in x64 build of WiX UtilExtension?

2008-10-23 Thread Pally Sandher
AIL PROTECTED] Sent: 22 October 2008 19:26 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Bug in x64 build of WiX UtilExtension? XmlConfig does not automatically create an uninstall step for you. That's why there is the "On" attribute. You ge

Re: [WiX-users] Bug in x64 build of WiX UtilExtension?

2008-10-22 Thread Rob Mensching
Sent: Wednesday, October 22, 2008 10:52 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Bug in x64 build of WiX UtilExtension? I think the problem here is that there is no corresponding "uninstall" action for an operation like the following: (Sample

Re: [WiX-users] Bug in x64 build of WiX UtilExtension?

2008-10-22 Thread Brian Rogers
||/@[EMAIL PROTECTED]@:^[-['^";@@@\\>])@.". "{)/];)^{";$,+=(++$,);$_.=">&$,";`$_`; -Original Message- From: Rob Mensching [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 22, 2008 10:09 AM To: General discussion for Windows Installer XML toolse

Re: [WiX-users] Bug in x64 build of WiX UtilExtension?

2008-10-22 Thread Rob Mensching
toolset. Subject: Re: [WiX-users] Bug in x64 build of WiX UtilExtension? Hmm, I guess there is no straightforward way to edit existing values in an XML file with XmlConfig. As you mention, if it were possible, it would make it hard to rollback changes if something goes wrong (it would somehow have

Re: [WiX-users] Bug in x64 build of WiX UtilExtension?

2008-10-22 Thread Brian Rogers
";$,+=(++$,);$_.=">&$,";`$_`; -Original Message- From: Joel Paula (hotmail) [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 22, 2008 9:27 AM To: 'General discussion for Windows Installer XML toolset.' Subject: Re: [WiX-users] Bug in x64 build of WiX UtilExtensi

Re: [WiX-users] Bug in x64 build of WiX UtilExtension?

2008-10-22 Thread Joel Paula (hotmail)
ay, October 22, 2008 4:47 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Bug in x64 build of WiX UtilExtension? I'd recommend using XmlConfig instead of XmlFile. The following should achieve what you want: This blog post has some more examples of using XmlCon

Re: [WiX-users] Bug in x64 build of WiX UtilExtension?

2008-10-22 Thread Rob Mensching
XmlFile is limited. That's why we created XmlConfig. -Original Message- From: Joel Paula (hotmail) [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 22, 2008 09:11 To: 'General discussion for Windows Installer XML toolset.' Subject: Re: [WiX-users] Bug in x64 build of Wi

Re: [WiX-users] Bug in x64 build of WiX UtilExtension?

2008-10-22 Thread Joel Paula (hotmail)
bject: RE: [WiX-users] Bug in x64 build of WiX UtilExtension? Hi, I was stuck with the same error. I moved on to use XmlConfig instead. I guess there really is a bug with XmlFile. Anyway, those commands only add or delete nodes. I had to delete nodes and then re-add them with the correct inform

Re: [WiX-users] Bug in x64 build of WiX UtilExtension?

2008-10-22 Thread Joel Paula (hotmail)
Message- From: Pally Sandher [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 22, 2008 2:12 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Bug in x64 build of WiX UtilExtension? I'm trying to use util:XMLFile to modify the inner text of a tag in an XML file during install

Re: [WiX-users] Bug in x64 build of WiX UtilExtension?

2008-10-22 Thread Brian Rogers
.aspx ## $_='^#(/||/@[EMAIL PROTECTED]@:^[-['^";@@@\\>])@.". "{)/];)^{";$,+=(++$,);$_.=">&$,";`$_`; -Original Message- From: Pally Sandher [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 22, 2008 6:12 AM To: wix-users@lists.sourc

[WiX-users] Bug in x64 build of WiX UtilExtension?

2008-10-22 Thread Pally Sandher
I'm trying to use util:XMLFile to modify the inner text of a tag in an XML file during installation which is installed by my MSI for one of our plug-ins. The XML file is named IESveInterfaceParameters.xml and contains the following code: M:\IES\apps My installer code is as follow