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
Complete is by definition complete. What you need to do is customize a dialog that is shown prior to ready for installation and then use that in a component condition to drive whether an XML change occurs or not. That way when you get to the complete dialog you really are complete. ---

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