Neil Enns wrote:

What I can't figure out, however, is how to get rid of the finish dialog. If I take out the DialogRef for ExitDialog I wind up with the following two build errors:

C:\Users\neile\AppData\Local\Temp\kbfa-qdm\foo.msi : error LGHT0204: ICE 20: Exit dialog/action not found in 'InstallUISequence' Sequence Table.

C:\Users\neile\AppData\Local\Temp\kbfa-qdm\foo.msi : error LGHT0204: ICE 20: Exit dialog/action not found in 'AdminUISequence' Sequence Table.

I'm guessing that some of the other dialogs are expecting it to be there? Or I need to add some magic into some extra tables? Anyone have any pointers for what I need to tweak?


Windows Installer requires that a dialog or an action be marked as what's invoked when the setup finishes. (That's why it's an ICE error.) ExitDialog.wxs marks itself as the exit dialog using Show/@OnExit. You can do the same thing with a do-nothing custom action using Custom/@OnExit.

--
sig://boB
http://joyofsetup.com/

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to