Re: [WiX-users] uI on silent uninstall

2014-03-25 Thread Harold Wood (H10 Capital)
return ActionResult.Success; } -Original Message- From: sergey.s.be...@yandex.ru [mailto:sergey.s.be...@yandex.ru] Sent: Tuesday, March 25, 2014 1:04 AM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] uI on silent uninstall what message type You used for session.message?

Re: [WiX-users] uI on silent uninstall

2014-03-25 Thread Pavan Konduru
InstallMessage.Warning, record); return ActionResult.Success; } -Original Message- From: sergey.s.be...@yandex.ru [mailto:sergey.s.be...@yandex.ru] Sent: Tuesday, March 25, 2014 1:04 AM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] uI on silent uninstall

Re: [WiX-users] uI on silent uninstall

2014-03-25 Thread sergey.s.betke
what message type You used for session.message? С уважением, Бетке Сергей Сергеевич. От: Phil Wilson Отправлено: ‎пятница‎, ‎21‎ ‎марта‎ ‎2014‎ г. ‎20‎:‎54 Кому: General discussion about the WiX toolset. I'm not sure - I was under the impression that calls that that ultimately ende

Re: [WiX-users] uI on silent uninstall

2014-03-21 Thread Harold Wood (H10 Capital)
21, 2014 12:05 PM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] uI on silent uninstall That might be the detail that makes the difference - messaget types of error and warning are shown by Session.Message and equivalents, but perhaps not the ones that resolve to INSTALLMESS

Re: [WiX-users] uI on silent uninstall

2014-03-21 Thread Phil Wilson
they gave me the > direction I needed to get that task done. > > Again, Thanks everyone. > > Woody > > -Original Message- > From: Phil Wilson [mailto:phildgwil...@gmail.com] > Sent: Friday, March 21, 2014 9:12 AM > To: General discussion about the WiX toolse

Re: [WiX-users] uI on silent uninstall

2014-03-21 Thread Harold Wood (H10 Capital)
direction I needed to get that task done. Again, Thanks everyone. Woody -Original Message- From: Phil Wilson [mailto:phildgwil...@gmail.com] Sent: Friday, March 21, 2014 9:12 AM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] uI on silent uninstall In the general

Re: [WiX-users] uI on silent uninstall

2014-03-21 Thread Phil Wilson
I'm not sure - I was under the impression that calls that that ultimately ended up as MsiProcessMessage calls wouldn't show at uninstall, but by now I'm probably just totally confused :) --- Phil Wilson On Fri, Mar 21, 2014 at 9:36 AM, wrote: > I make small test jscript custom acti

Re: [WiX-users] uI on silent uninstall

2014-03-21 Thread sergey.s.betke
I make small test jscript custom action with Session.Message, and I can see message box on uninstall. But when I set msi options to disable UI - I can’t see message box. Where is the problem? С уважением, Бетке Сергей Сергеевич. От: Phil Wilson Отправлено: ‎пятница‎, ‎21‎ ‎марта‎ ‎2014

Re: [WiX-users] uI on silent uninstall

2014-03-21 Thread Phil Wilson
In the general context of showing messages during MSI activities session.message (aka MsiProcessMessage) is the correct answer. In the context of this particular issue of showing a message during uninstall it isn't the required answer because uninstall shows no UI and therefore session.message won'

Re: [WiX-users] uI on silent uninstall

2014-03-21 Thread sergey.s.betke
it isn’t official note from Microsoft. sample code for jscript custom action: https://github.com/Metrolog/ITG.NevaTest3303P/blob/master/ITG.BDE_PRO/BDECustomActions.js For simple message box jscript Session.Message is optimal solution, why not? С уважением, Бетке Сергей Сергеевич. О

Re: [WiX-users] uI on silent uninstall

2014-03-20 Thread David Connet
On 3/20/2014 6:32 AM, sergey.s.be...@yandex.ru wrote: > why not jscript or vbscript inline custom actio http://blogs.msdn.com/b/robmen/archive/2004/05/20/136530.aspx Dave -- Learn Graph Databases - Download FREE O'Reilly

Re: [WiX-users] uI on silent uninstall

2014-03-20 Thread sergey.s.betke
Session.Message. This method properly worked for disabled UI. С уважением, Бетке Сергей Сергеевич. От: sergey.s.be...@yandex.ru Отправлено: ‎четверг‎, ‎20‎ ‎марта‎ ‎2014‎ г. ‎17‎:‎32 Кому: General discussion about the WiX toolset. why not jscript or vbscript inline custom action?

Re: [WiX-users] uI on silent uninstall

2014-03-20 Thread sergey.s.betke
why not jscript or vbscript inline custom action? С уважением, Бетке Сергей Сергеевич. От: Harold Wood (H10 Capital) Отправлено: ‎четверг‎, ‎20‎ ‎марта‎ ‎2014‎ г. ‎1‎:‎49 Кому: General discussion about the WiX toolset. Ok this is what I have so far: Product.wxs Remov

Re: [WiX-users] uI on silent uninstall

2014-03-19 Thread Harold Wood (H10 Capital)
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 thin

Re: [WiX-users] uI on silent uninstall

2014-03-19 Thread Rob Mensching
w.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 warni

Re: [WiX-users] uI on silent uninstall

2014-03-19 Thread Harold Wood (H10 Capital)
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 wrote: > Did you declare the custom action in the .

Re: [WiX-users] uI on silent uninstall

2014-03-19 Thread Harold Wood (H10 Capital)
3:56 PM To: General discussion about the WiX toolset. Subject: Re: [WiX-users] uI on silent uninstall 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

Re: [WiX-users] uI on silent uninstall

2014-03-19 Thread John Ludlow
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: Pa

Re: [WiX-users] uI on silent uninstall

2014-03-19 Thread kevindelafield
Yes, I do. Sent from my T-Mobile 4G LTE Device Original message From: Pavan Konduru Date:03/19/2014 7:03 PM (GMT-05:00) To: "General discussion about the WiX toolset." Subject: Re: [WiX-users] uI on silent uninstall Did you declare the custom action in the

Re: [WiX-users] uI on silent uninstall

2014-03-19 Thread Pavan Konduru
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

Re: [WiX-users] uI on silent uninstall

2014-03-19 Thread Harold Wood (H10 Capital)
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"

Re: [WiX-users] uI on silent uninstall

2014-03-19 Thread Pavan Konduru
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 h

Re: [WiX-users] uI on silent uninstall

2014-03-19 Thread Rob Mensching
r the WiX toolset | http://www.firegiant.com/ -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 s

[WiX-users] uI on silent uninstall

2014-03-19 Thread Harold Wood (H10 Capital)
Ok this is what I have so far: Product.wxs Remove Remove CustomAction.cs [CustomAction] public static ActionResult UninstallMessage(Session session) { if (session == null) { logEventsApp.WriteLoggingEvent(string.Format(CultureIn