Re: [WiX-users] How to invoke XmlFile standard custom action after ExitDialog

2012-11-10 Thread Norbert Schmid
Finally I made it work. I re-templated InstallDirDlg.wxs and WixUI_InstallDir.wxs and added my checkbox as described here: http://www.dizzymonkeydesign.com/blog/misc/adding-and-customizing-dlgs-in-wix-3/ Thank you all for pointing me to the right direction! Norbert -- View this message in co

Re: [WiX-users] How to invoke XmlFile standard custom action after ExitDialog

2012-11-10 Thread Christopher Painter
. From: "Norbert Schmid" Sent: Thursday, November 08, 2012 3:53 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] How to invoke XmlFile standard custom action after ExitDialog Hi, I have quite a simple wxs file using WixUI_Minimal. At the

Re: [WiX-users] How to invoke XmlFile standard custom action after ExitDialog

2012-11-09 Thread Bob Arnson
On 08-Nov-12 16:50, Norbert Schmid wrote: > I have quite a simple wxs file using WixUI_Minimal. At the end of the > install procedure I want to ask the user for an install option and depending > on it I want to patch one entry in the installed exe.config file. Don't. Ask before the install. At the

Re: [WiX-users] How to invoke XmlFile standard custom action after ExitDialog

2012-11-09 Thread Nick Ramirez
I believe that adding an XmlFile element inside of a Component will add an action to the install sequence that will do the XML writing. That would happen during the installation, not at the end. Is it a hard requirement that this only be performed at the end? All actions that change the state of th

[WiX-users] How to invoke XmlFile standard custom action after ExitDialog

2012-11-08 Thread Norbert Schmid
Hi, I have quite a simple wxs file using WixUI_Minimal. At the end of the install procedure I want to ask the user for an install option and depending on it I want to patch one entry in the installed exe.config file. As I understand there is the XmlFile utility in WixUtilExtension, which can do t