Hi Harold, The uninstall cannot have standard Wix Dialogs from what I know. We had a similar requirement and I used a custom action (c#) to pop-up a "OK" message box. Something like this. Schedule this action only during uninstall(REMOVE=ALL) in the installExecute sequence.
[CustomAction] public static ActionResult UsrDelPrompt(Session session) { string location = session["CustomActionData"]; session.Log(location); DialogResult dialogResult = MessageBox.Show(new Form() { TopMost = true }, "Message box content " + Environment.NewLine + location, "Header message for box", MessageBoxButtons.OK); return ActionResult.Success; } -----Original Message----- From: Harold Wood (H10 Capital) [mailto:v-wow...@microsoft.com] Sent: Wednesday, March 19, 2014 10:25 AM To: General discussion about the WiX toolset. Subject: [WiX-users] UI on uninstall I need to throw a message on the screen during uninstall. How do I do that? Thanks Woody ------------------------------------------------------------------------------ Learn Graph Databases - Download FREE O'Reilly Book "Graph Databases" is the definitive new guide to graph databases and their applications. Written by three acclaimed leaders in the field, this first edition is now available. Download your free book today! http://p.sf.net/sfu/13534_NeoTech _______________________________________________ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users ------------------------------------------------------------------------------ Learn Graph Databases - Download FREE O'Reilly Book "Graph Databases" is the definitive new guide to graph databases and their applications. Written by three acclaimed leaders in the field, this first edition is now available. Download your free book today! http://p.sf.net/sfu/13534_NeoTech _______________________________________________ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users