Ahh ok...

-----Original Message-----
From: Rob Mensching [mailto:r...@firegiant.com] 
Sent: Wednesday, March 19, 2014 4:29 PM
To: General discussion about the WiX toolset.
Subject: Re: [WiX-users] uI on silent uninstall

That's not an MSI. That's a bootstrapper. That's why (I think it was) Jacob 
suggested using a Bundle. Then you get full control over the UI.

_______________________________________________________________
 FireGiant  |  Dedicated support for the WiX toolset  |  
http://www.firegiant.com/

-----Original Message-----
From: Harold Wood (H10 Capital) [mailto:v-wow...@microsoft.com]
Sent: Wednesday, March 19, 2014 4:21 PM
To: General discussion about the WiX toolset.
Subject: Re: [WiX-users] uI on silent uninstall

Do an uninstall on sql server and you get a full Ui with a warning message, etc 
etc, so there is a way around it, I just need to figure it out.

-----Original Message-----
From: John Ludlow [mailto:john.ludlow...@gmail.com]
Sent: Wednesday, March 19, 2014 4:12 PM
To: General discussion about the WiX toolset.
Subject: Re: [WiX-users] uI on silent uninstall

That's probably because the MSI is running in the just-a-progress-bar mode 
during uninstall. MSI message boxes are being suppressed.


On 19 March 2014 22:56, Pavan Konduru <pavan.kond...@accelrys.com> wrote:

> Did you declare the custom action in the .wxs file?
>
> -----Original Message-----
> From: Harold Wood (H10 Capital) [mailto:v-wow...@microsoft.com]
> Sent: Wednesday, March 19, 2014 3:29 PM
> To: General discussion about the WiX toolset.
> Subject: Re: [WiX-users] uI on silent uninstall
>
> I did that and it didn't work.
>
> -----Original Message-----
> From: Pavan Konduru [mailto:pavan.kond...@accelrys.com]
> Sent: Wednesday, March 19, 2014 3:20 PM
> To: General discussion about the WiX toolset.
> Subject: Re: [WiX-users] uI on silent uninstall
>
> Make the condition REMOVE="ALL"
>
> -----Original Message-----
> From: Harold Wood (H10 Capital) [mailto:v-wow...@microsoft.com]
> Sent: Wednesday, March 19, 2014 2:49 PM
> To: General discussion about the WiX toolset.
> Subject: [WiX-users] uI on silent uninstall
>
> Ok this is what I have so far:
>
> Product.wxs
>
>
>       <!--Display the uninstall message box so user is informed we 
> will not remove the databases-->
>       <Custom Action ="UninstallMessage"
> After="InstallFinalize">Remove</Custom>
>       <Custom Action ="UninstallMessage.Show"
>  After="UninstallMessage">Remove</Custom>
>
> CustomAction.cs
>
> [CustomAction]
>       public static ActionResult UninstallMessage(Session session)
>       {
>           if (session == null)
>           {
>
> logEventsApp.WriteLoggingEvent(string.Format(CultureInfo.InvariantCult
> ure, "{0} ; {1}", Resources.ArgumentNullError, "session"), session);
>               throw new ArgumentNullException("session", 
> Resources.ArgumentNullError);
>           }
>
>           // This is just to display a message box that informs the 
> user that they will have to remove the databases manually
>           StringBuilder notificationMessage = new StringBuilder("The 
> actual databases will not be removed from the server by this.");
>           notificationMessage.Append("\r\n\r\n");
>           notificationMessage.Append("You will have to manually remove 
> the Databases from your server.");
>
>           Record record = new Record();
>           record.FormatString = notificationMessage.ToString();
>           MessageResult value = session.Message(InstallMessage.Info | 
> (InstallMessage)MessageIcon.Warning | 
> (InstallMessage)MessageButtons.OK,
> record);
>
>           return ActionResult.Success;
>       }
>
> And im still not getting the message box.  So what am I doing wrong?
>
> 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
>
>
> ----------------------------------------------------------------------
> -------- 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
>
------------------------------------------------------------------------------
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

------------------------------------------------------------------------------
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

Reply via email to