Re: [WiX-users] Using CustomAction in WPF Bootstrapper application

2013-10-10 Thread Phill Hogland
Look at WixBA.cs line 147 and it (I think) does what you are wanting to do after the install in the mba right before the BA exists. this.PostTelemetry(); this.Engine.Quit(WixBA.Model.Result); You would probably want to change the 'Telemetry' code to create a http post that

Re: [WiX-users] Using CustomAction in WPF Bootstrapper application

2013-10-10 Thread ZivCizer
Thanks! it works! -- View this message in context: http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Using-CustomAction-in-WPF-Bootstrapper-application-tp7589611p7589618.html Sent from the wix-users mailing list archive at Nabble.com. ---

Re: [WiX-users] Using CustomAction in WPF Bootstrapper application

2013-10-10 Thread Dror, Tomer
___ From: ZivCizer [cize...@gmail.com] Sent: Thursday, October 10, 2013 5:12 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Using CustomAction in WPF Bootstrapper application Thanks Tom, So, as i understand, in my case, i should use the BA just to support the UI, and all other actions as

Re: [WiX-users] Using CustomAction in WPF Bootstrapper application

2013-10-10 Thread Hoover, Jacob
Use a property, and configure the bundle to pass the engine variable to the MSI. (See MsiProperty in the docs.) -Original Message- From: ZivCizer [mailto:cize...@gmail.com] Sent: Thursday, October 10, 2013 9:13 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Using

Re: [WiX-users] Using CustomAction in WPF Bootstrapper application

2013-10-10 Thread ZivCizer
Thanks Tom, So, as i understand, in my case, i should use the BA just to support the UI, and all other actions as the one i mentioned should be implemented as CustomAction as one of the "InstallExecuteSequence". When trying to do so, i encountered this problem: I have a textbox in my window that

Re: [WiX-users] Using CustomAction in WPF Bootstrapper application

2013-10-10 Thread Dror, Tomer
Cizer [cize...@gmail.com] Sent: Thursday, October 10, 2013 4:55 PM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Using CustomAction in WPF Bootstrapper application Hi, I'm pretty new to WiX, I'm working on a setup with WiX and WPF UI. I was using several examples online, includin

[WiX-users] Using CustomAction in WPF Bootstrapper application

2013-10-10 Thread ZivCizer
Hi, I'm pretty new to WiX, I'm working on a setup with WiX and WPF UI. I was using several examples online, including the WiX setup itself, But i didn't see anywhere an example of using CustomAction with this kind of project. one example of the thing i need is to send HTTP request after my inst

Re: [WiX-users] Using CustomAction

2008-04-29 Thread Rob Mensching
o > get > > you the full path to your file: "[!FileId]". Lots of other good > stuff > > in that particular help topic. > > > > -Original Message- > > From: [EMAIL PROTECTED] [mailto:wix-users- > > [EMAIL PROTECTED] On Behalf Of Henning

Re: [WiX-users] Using CustomAction

2008-04-29 Thread Henning Eiben
s.sourceforge.net > > Subject: RE: Using CustomAction > > > > The Formatted topic in the MSI SDK describes the magical syntax to > get > > you the full path to your file: "[!FileId]". Lots of other good > stuff > > in that particular help topic. > > > > -

Re: [WiX-users] Using CustomAction

2008-04-29 Thread Rob Mensching
e- > From: [EMAIL PROTECTED] [mailto:wix-users- > [EMAIL PROTECTED] On Behalf Of Henning Eiben > Sent: Monday, April 28, 2008 06:29 > To: wix-users@lists.sourceforge.net > Subject: [WiX-users] Using CustomAction > > Hi List, > > I created a rather simple wix-project t

Re: [WiX-users] Using CustomAction

2008-04-29 Thread Henning Eiben
-users- > [EMAIL PROTECTED] On Behalf Of Henning Eiben > Sent: Monday, April 28, 2008 06:29 > To: wix-users@lists.sourceforge.net > Subject: [WiX-users] Using CustomAction > > Hi List, > > I created a rather simple wix-project to create a MSI installer for my >

Re: [WiX-users] Using CustomAction

2008-04-29 Thread Rob Mensching
nt: Monday, April 28, 2008 06:29 To: wix-users@lists.sourceforge.net Subject: [WiX-users] Using CustomAction Hi List, I created a rather simple wix-project to create a MSI installer for my project. I wrote a simple webpart for sharepoint (which actually doesn't really matter at this point ...)

[WiX-users] Using CustomAction

2008-04-28 Thread Henning Eiben
Hi List, I created a rather simple wix-project to create a MSI installer for my project. I wrote a simple webpart for sharepoint (which actually doesn't really matter at this point ...), which I would like to register using 'stsadm'. OK, so I put my webpart (packaged as a WSP-file) as a binary

Re: [WiX-users] Using CustomAction during the installUISequence

2007-09-18 Thread Wilson, Phil
ember 18, 2007 9:25 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Using CustomAction during the installUISequence Sorry, i m attaching the installation log: Hope that helps Rob Hamflett wrote: > > 'ends prematurely' isn't much to go on. Does it repor

Re: [WiX-users] Using CustomAction during the installUISequence

2007-09-18 Thread chandan Koushik
Sorry, i m attaching the installation log: Hope that helps Rob Hamflett wrote: > > 'ends prematurely' isn't much to go on. Does it report error numbers? > Does a logged installation > report anything useful? > > Rob > > chandan Koushik wrote: >> Hi All, >> I have a config.cpp file which co

Re: [WiX-users] Using CustomAction during the installUISequence

2007-09-18 Thread Rob Hamflett
'ends prematurely' isn't much to go on. Does it report error numbers? Does a logged installation report anything useful? Rob chandan Koushik wrote: > Hi All, > I have a config.cpp file which contains the function > > _declspec(dllexport) UINT CheckBluePrint (MSIHANDLE hInstall) > { >

[WiX-users] Using CustomAction during the installUISequence

2007-09-18 Thread chandan Koushik
Hi All, I have a config.cpp file which contains the function _declspec(dllexport) UINT CheckBluePrint (MSIHANDLE hInstall) { int dRet=0; logfile = fopen("c:\\mnsetup.log","a"); fprintf(logfile,"installer for Me\n"); CoInitialize(NUL