[WiX-users] Logging in EXE custom action

2014-04-24 Thread Jack Sojourn
I have to spawn an exe as a custom action that I have complete control over. I am using the CAQuietExe to do this. I need to log some info when this runs to the install log. Is this possible? My first thought was to pass the MSIHANDLE to the exe but I do not know if this is per-process which

Re: [WiX-users] logging

2011-06-20 Thread David Amey
: +44 (0)1483 799111 -Original Message- From: Martin Kulov [mailto:mar...@kulov.net] Sent: 15 June 2011 15:54 To: 'General discussion for Windows Installer XML toolset.' Subject: Re: [WiX-users] logging Hi David, I am not expert in candle and light but I believe that redirection in DOS

Re: [WiX-users] logging

2011-06-20 Thread Peter Shirtcliffe
with %COMSPEC% \c if the function will expand environment variables. -Original Message- From: David Amey [mailto:da...@creative-engine.co.uk] Sent: 20 June 2011 14:06 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] logging Hello Martin, Thank you

Re: [WiX-users] logging

2011-06-15 Thread David Amey
...@gmail.com] Sent: 14 June 2011 19:28 To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] logging Something like this may help: http://blog.crankybit.com/redirecting-output-to-a-file-in-windows-batch-scripts/ David Amey wrote: Hello All Can someone please explain how I can turn

Re: [WiX-users] logging

2011-06-15 Thread Martin Kulov
. Subject: Re: [WiX-users] logging Hi Dave, Thank you for this link. I have been trying to implement it into my calls, but sadly it does not seem to work. I have tried the redirecting with a simple cmd call and it works fine. However I am creating an automation process using autoit, and im not sure

[WiX-users] logging

2011-06-14 Thread David Amey
Hello All Can someone please explain how I can turn logging on during the candle and light calls, as I have errors that I need to correct. I am automating the calls, which causes the command prompt to close very quickly after the code has been run. Thanks in advance. PS thank you Tonny

Re: [WiX-users] logging

2011-06-14 Thread Dave Andersen
Something like this may help: http://blog.crankybit.com/redirecting-output-to-a-file-in-windows-batch-scripts/ David Amey wrote: Hello All Can someone please explain how I can turn logging on during the candle and light calls, as I have errors that I need to correct. I am automating the

Re: [WiX-users] Logging while uninstalling from Control Panel

2010-08-10 Thread Sai Kodi
, 2010 7:52 AM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Logging while uninstalling from Control Panel On 8/6/2010 3:13 PM, Ivo Beltchev wrote: I think you can edit the registry (via custom action or another way) to set WindowsInstaller to 0, and change UninstallString

Re: [WiX-users] Logging while uninstalling from Control Panel

2010-08-07 Thread Bob Arnson
On 8/6/2010 3:13 PM, Ivo Beltchev wrote: I think you can edit the registry (via custom action or another way) to set WindowsInstaller to 0, and change UninstallString to MsiExec.exe /x {blah} /l*v C:\q.txt. No, ARP ignores that string. -- sig://boB http://joyofsetup.com/

[WiX-users] Logging while uninstalling from Control Panel

2010-08-06 Thread saikodi
Hello All, If the user uninstalls an application from Control Panel, is it possible to provide an uninstallation log file somehow for the uninstallation process? If so, how would I provide that log file name and location? Please advise. Thanks, Sai Kodi -- View this message in context:

Re: [WiX-users] Logging while uninstalling from Control Panel

2010-08-06 Thread Pally Sandher
. Registered in Scotland No. SC151456 Registered Office - Helix Building, West Of Scotland Science Park, Glasgow G20 0SP Email Disclaimer -Original Message- From: saikodi [mailto:saik...@hotmail.com] Sent: 06 August 2010 07:51 To: wix-users@lists.sourceforge.net Subject: [WiX-users] Logging

Re: [WiX-users] Logging while uninstalling from Control Panel

2010-08-06 Thread Sai Kodi
: Friday, August 06, 2010 4:05 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Logging while uninstalling from Control Panel http://lmgtfy.com/?q=how+to+enable+windows+installer+logging Palbinder Sandher Software Deployment IT Administrator T: +44 (0) 141 945

Re: [WiX-users] Logging while uninstalling from Control Panel

2010-08-06 Thread Blair
With MSI 4.0 and above, you can use the MsiLogging property. -Original Message- From: Sai Kodi [mailto:saik...@hotmail.com] Sent: Friday, August 06, 2010 9:50 AM To: 'General discussion for Windows Installer XML toolset.' Subject: Re: [WiX-users] Logging while uninstalling from Control

Re: [WiX-users] Logging while uninstalling from Control Panel

2010-08-06 Thread Castro, Edwin G. (Hillsboro)
...@hotmail.com] Sent: Friday, August 06, 2010 9:50 AM To: 'General discussion for Windows Installer XML toolset.' Subject: Re: [WiX-users] Logging while uninstalling from Control Panel Hi Pally, That's not what I am looking for. I have already done that search and I know how that works. I want

[WiX-users] Logging in deferred CA

2010-07-20 Thread Stelios Kyprou
Hello! I was wondering, how can i log stuff within a deferred custom action, since i can't use session.Log? Regards, Stelios -- Stelios Kyprou Systems Engineer Formicary - delivering quality financial technology solutions(TM) www.formicary.net

Re: [WiX-users] Logging in deferred CA

2010-07-20 Thread Yan Sklyarenko
Why not? You can use Session.Log() in deferred CA as well. -- Yan -Original Message- From: Stelios Kyprou [mailto:stelios.kyp...@formicary.net] Sent: Tuesday, July 20, 2010 13:05 To: General discussion for Windows Installer XML toolset. Subject: [WiX-users] Logging in deferred CA Hello

[WiX-users] Logging Error

2010-07-19 Thread Thode, Katelyn
I am attempting to log the installation of a package I created. When I run the following command line: msiexec.exe /I C:/comp/code/libdbg/tfuInstaller.msi /l*v C:/Documents and Settings/name/My Documents/tfuInstaller.txt I get an error message that states: This installation package could not

Re: [WiX-users] Logging Error

2010-07-19 Thread Jeremy Farrell
Perhaps Windows path separators (\) in the paths? From: Thode, Katelyn [mailto:katelyn.th...@guidancesoftware.com] I am attempting to log the installation of a package I created. When I run the following command line: msiexec.exe /I C:/comp/code/libdbg/tfuInstaller.msi /l*v

Re: [WiX-users] Logging Error

2010-07-19 Thread Thode, Katelyn
Thanks for the response. That appears to have been the issue. -Original Message- From: Jeremy Farrell [mailto:jfarr...@pillardata.com] Sent: Monday, July 19, 2010 5:03 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Logging Error Perhaps Windows

Re: [WiX-users] Logging information

2010-07-12 Thread Castro, Edwin G. (Hillsboro)
, 2010 9:33 PM To: wix-users@lists.sourceforge.net Subject: Re: [WiX-users] Logging information Hi, Thanks for reply. Actually I want to register our com exe. We are using heat to create the .wxs file. It contains the information about class and interface ids but still it is not registering. We

[WiX-users] Logging information

2010-07-09 Thread Rahul.Ekbote
Hi, I am running following custom action which runs /RegServer command. File Id='distributeserver' Name=DISTRIBUTESERVERFILE src=f:\Program Files\Ambit ALM 6\ALMEngine\distributionserver.exe / CustomAction Id='DISTRIBUTESERVERCUSTOMACTION' FileKey='distributeserver'

Re: [WiX-users] Logging information

2010-07-09 Thread Castro, Edwin G. (Hillsboro)
...@sungard.com [mailto:rahul.ekb...@sungard.com] Sent: Friday, July 09, 2010 1:53 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Logging information Hi, I am running following custom action which runs /RegServer command. File Id='distributeserver' Name=DISTRIBUTESERVERFILE

Re: [WiX-users] Logging information

2010-07-09 Thread Rahul.Ekbote
discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Logging information Hi Windows Installer doesn't support logging the console output of command you execute through a custom action. Consider using CAQuietExec to execute your custom action. That will do two things

Re: [WiX-users] Logging from XML file?

2009-12-03 Thread dB .
. Subject: Re: [WiX-users] Logging from XML file? Sorry, I meant my Product.wxs (or any other wix xml source). Generally I would just like to have something printed to the log if I did: msiexec /i myinstaller.msi /l* install.log I would like to do something like this: Component Guid=SOME-GUID-HERE

[WiX-users] Logging from XML file?

2009-12-02 Thread Slide
Is it possible to log something to the installer log file from the XML definition? Thanks, slide -- Join us December 9, 2009 for the Red Hat Virtual Experience, a free event focused on virtualization and cloud computing.

Re: [WiX-users] Logging from XML file?

2009-12-02 Thread Blair
@gmail.com] Sent: Wednesday, December 02, 2009 11:15 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Logging from XML file? Is it possible to log something to the installer log file from the XML definition? Thanks, slide

Re: [WiX-users] Logging from XML file?

2009-12-02 Thread Slide
to these questions will go a long way to getting you an answer. -Original Message- From: Slide [mailto:slide.o@gmail.com] Sent: Wednesday, December 02, 2009 11:15 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Logging from XML file? Is it possible to log something

Re: [WiX-users] Logging from XML file?

2009-12-02 Thread Rob Mensching
02, 2009 11:15 AM To: wix-users@lists.sourceforge.net Subject: [WiX-users] Logging from XML file? Is it possible to log something to the installer log file from the XML definition? Thanks, slide

Re: [WiX-users] Logging from XML file?

2009-12-02 Thread Blair
, December 02, 2009 6:09 PM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Logging from XML file? Sorry, I meant my Product.wxs (or any other wix xml source). Generally I would just like to have something printed to the log if I did: msiexec /i myinstaller.msi /l

Re: [WiX-users] Logging

2008-10-07 Thread Peter Vestergaard
this message almost 10 times today? -Original Message- From: Peter Vestergaard [mailto:[EMAIL PROTECTED] Sent: Monday, October 06, 2008 6:47 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Logging I am using the command line On Mon, Oct 6

Re: [WiX-users] Logging

2008-10-07 Thread Simon Dahlbacka
[EMAIL PROTECTED] anyone else received this message almost 10 times today? -Original Message- From: Peter Vestergaard [mailto:[EMAIL PROTECTED] Sent: Monday, October 06, 2008 6:47 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Logging

Re: [WiX-users] Logging

2008-10-07 Thread Peter Vestergaard
, October 06, 2008 6:47 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Logging I am using the command line On Mon, Oct 6, 2008 at 12:38 PM, Simon Dahlbacka [EMAIL PROTECTED]wrote: Or if you use votive (or othervise msbuild

[WiX-users] Logging

2008-10-06 Thread Peter Vestergaard
Hi. Is there any way to log candle and light build errors and warnings to a text file? Best regards Peter - This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based

Re: [WiX-users] Logging

2008-10-06 Thread Rob Hamflett
There's the traditional method of redirecting the output: candle args 1stdout.txt 2stderr.txt Rob Peter Vestergaard wrote: Hi. Is there any way to log candle and light build errors and warnings to a text file? Best regards Peter

Re: [WiX-users] Logging from a Custom Action during the UI phase

2008-10-06 Thread John Hall
If you're looking for a quick non-debugger method, property changes are still logged. It may be a hack, but calling MsiSetProperty(hMSI, _T(LOGME), _T(...)) is effective. Michael, That's a nice workaround - I like it. Cheers, John

Re: [WiX-users] Logging

2008-10-06 Thread Simon Dahlbacka
Or if you use votive (or othervise msbuild compatible project), you can use the normal msbuild logging mechanism http://msdn.microsoft.com/en-us/library/ms171470(VS.80).aspx /Simon On Mon, Oct 6, 2008 at 1:15 PM, Peter Vestergaard [EMAIL PROTECTED]wrote: Thanks for your reply. I can't get

Re: [WiX-users] Logging

2008-10-06 Thread Peter Vestergaard
I am using the command line On Mon, Oct 6, 2008 at 12:38 PM, Simon Dahlbacka [EMAIL PROTECTED]wrote: Or if you use votive (or othervise msbuild compatible project), you can use the normal msbuild logging mechanism http://msdn.microsoft.com/en-us/library/ms171470(VS.80).aspx /Simon On

Re: [WiX-users] Logging

2008-10-06 Thread Peter Vestergaard
Thanks for your reply. I can't get this to work with light. Could you give me an examble of the correct syntax? -Peter On Mon, Oct 6, 2008 at 10:45 AM, Rob Hamflett [EMAIL PROTECTED] wrote: There's the traditional method of redirecting the output: candle args 1stdout.txt 2stderr.txt Rob

Re: [WiX-users] Logging

2008-10-06 Thread Rob Hamflett
For one product my light command is this: light -nologo -sw1044 DBS.wixobj SN_COMMON_PATH.wixobj Add_Common_Bin_To_Path.wixobj -loc Common\CommonSettings\Common-E.wxl -loc English.wxl -out DBS.msi You would then tag the redirection stuff on the end like this: light -nologo -sw1044 DBS.wixobj

Re: [WiX-users] Logging

2008-10-06 Thread Peter Vestergaard
Thanks for your assistance. It does however not work for me... my command is: C:\Projects\...\WiXOutput.wixobj -out C:\Projects\...\Installer.msi -ext WixUIExtension -loc C:\Projects\...\Language.xml 1out.txt 2err.txt 2008/10/6 Rob Hamflett [EMAIL PROTECTED] For one product my light command is

Re: [WiX-users] Logging

2008-10-06 Thread Rob Hamflett
You haven't actually called light on your command line. Have you registered the .wixobj file extension with light or something? Rob Peter Vestergaard wrote: Thanks for your assistance. It does however not work for me... my command is: C:\Projects\...\WiXOutput.wixobj -out

Re: [WiX-users] Logging

2008-10-06 Thread Phil Sayers
anyone else received this message almost 10 times today? -Original Message- From: Peter Vestergaard [mailto:[EMAIL PROTECTED] Sent: Monday, October 06, 2008 6:47 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Logging I am using the command line

Re: [WiX-users] Logging from a Custom Action during the UI phase

2008-10-02 Thread John Hall
Yeah, Windows Installer doesn't let it work. Why? Some message processing issue inside them. I think this is documented in some small print somewhere. PS: Please don't shoot the messenger. smile/ Of course not. I had half guessed it was something like this anyway. I guess it's a matter

Re: [WiX-users] Logging from a Custom Action during the UI phase

2008-10-02 Thread Michael Owings
This is how I generally do it (message box/attach debugger) -- although you can of course do your own logging. You could probably even trigger it off of a property passed on the MSIEXEC command line. John Hall wrote: Yeah, Windows Installer doesn't let it work. Why? Some message processing

Re: [WiX-users] Logging from a Custom Action during the UI phase

2008-10-02 Thread Michael Urman
On Thu, Oct 2, 2008 at 3:13 AM, John Hall [EMAIL PROTECTED] wrote: Yeah, Windows Installer doesn't let it work. Why? Some message processing issue inside them. I think this is documented in some small print somewhere. PS: Please don't shoot the messenger. smile/ Of course not. I had

Re: [WiX-users] Logging from a Custom Action during the UI phase

2008-10-02 Thread Richard
In article [EMAIL PROTECTED], Michael Urman [EMAIL PROTECTED] writes: If you're looking for a quick non-debugger method, property changes are still logged. It may be a hack, but calling MsiSetProperty(hMSI, _T(LOGME), _T(...)) is effective. Another option is to call OutputDebugString

[WiX-users] Logging from a Custom Action during the UI phase

2008-10-01 Thread John Hall
In my installer I have some C++ custom actions that log to the main MSI log file using MsiProcessMessage. I'm now writing a CA that is executed on a button press in the UI as the user leaves the feature selection dialog. However, none of my debug output is appearing in the log. Is there a

Re: [WiX-users] Logging from a Custom Action during the UI phase

2008-10-01 Thread Rob Mensching
01, 2008 02:05 To: General discussion for Windows Installer XML toolset. Subject: [WiX-users] Logging from a Custom Action during the UI phase In my installer I have some C++ custom actions that log to the main MSI log file using MsiProcessMessage. I'm now writing a CA that is executed on a button

Re: [WiX-users] Logging in a custom action

2007-04-27 Thread Bob Arnson
[EMAIL PROTECTED] wrote: I was able to resolve my build errors by defining everything missing myself (to /**/ ). I read that they might be defined by default in VS05, but not in VS03 (what I'm using.) Did you rebuild wcautil.lib? I'm not sure whether you're going to run into problems

Re: [WiX-users] Logging in a custom action

2007-04-27 Thread Chris.Rowland
As in /MD instead of /MT? From: Bob Arnson [mailto:[EMAIL PROTECTED] Sent: Friday, April 27, 2007 12:08 PM To: Rowland, Chris Cc: [EMAIL PROTECTED]; WiX-users@lists.sourceforge.net Subject: Re: [WiX-users] Logging in a custom action [EMAIL PROTECTED

Re: [WiX-users] Logging in a custom action

2007-04-27 Thread Wilson, Phil
, April 27, 2007 9:58 AM To: Wilson, Phil Cc: WiX-users@lists.sourceforge.net Subject: Re: [WiX-users] Logging in a custom action On 4/27/07, Wilson, Phil [EMAIL PROTECTED] wrote: As an easy test, install the VC support redist for VS 2005 on a test system and see if your custom action

Re: [WiX-users] Logging in a custom action

2007-04-27 Thread Wilson, Phil
] [mailto:[EMAIL PROTECTED] On Behalf Of Wilson, Phil Sent: Friday, April 27, 2007 10:45 AM To: WiX-users@lists.sourceforge.net Subject: Re: [WiX-users] Logging in a custom action I find it hard to believe they put a refresh up there on April 10th that is not for SP1, but you're right, it's

Re: [WiX-users] Logging in a custom action

2007-04-27 Thread Mike Dimmick
2007 17:50 To: LEMIRE, JOHN; WiX-users@lists.sourceforge.net Subject: Re: [WiX-users] Logging in a custom action There is a tool out there called depends.exe that does this *and* provides a spiffy tree that shows all the dependencies your code has. I use this tool *all the time* to figure out

Re: [WiX-users] Logging in a custom action

2007-04-27 Thread Chris.Rowland
or version incompatibility? From: Bob Arnson [mailto:[EMAIL PROTECTED] Sent: Friday, April 27, 2007 11:53 AM To: Rowland, Chris Cc: [EMAIL PROTECTED]; WiX-users@lists.sourceforge.net Subject: Re: [WiX-users] Logging in a custom action [EMAIL PROTECTED] wrote: No, I

Re: [WiX-users] Logging in a custom action

2007-04-27 Thread Wilson, Phil
From: Peterson, Joel [mailto:[EMAIL PROTECTED] Sent: Friday, April 27, 2007 1:53 PM To: Simon Dahlbacka; Wilson, Phil Cc: WiX-users@lists.sourceforge.net Subject: RE: [WiX-users] Logging in a custom action After installing Visual Studio 2005 SP1, the WinSxS Merge Modules will be available

Re: [WiX-users] Logging in a custom action

2007-04-26 Thread Chris.Rowland
: Wednesday, April 25, 2007 4:20 PM To: Rowland, Chris; WiX-users@lists.sourceforge.net Subject: RE: [WiX-users] Logging in a custom action If you are writing a C++ custom action, then the WcaLog function in wcautil will write to the install log or show you how to do it yourself. -Brian Simoneau

Re: [WiX-users] Logging in a custom action

2007-04-26 Thread Chris.Rowland
PROTECTED] Sent: Thursday, April 26, 2007 12:42 PM To: [EMAIL PROTECTED]; WiX-users@lists.sourceforge.net Subject: Re: [WiX-users] Logging in a custom action Thanks, that looks like what I wanted. I'm having trouble linking everything correctly though, and I get a ton of errors in wcautil.h

Re: [WiX-users] Logging in a custom action

2007-04-26 Thread Brian Simoneau
PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, April 26, 2007 1:41 PM To: Brian Simoneau; WiX-users@lists.sourceforge.net Subject: RE: [WiX-users] Logging in a custom action I was able to resolve my build errors by defining everything missing

Re: [WiX-users] Logging in a custom action

2007-04-26 Thread Chris.Rowland
for your help. Google doesn't reveal much on this subject :-( From: Brian Simoneau [mailto:[EMAIL PROTECTED] Sent: Thursday, April 26, 2007 1:58 PM To: Rowland, Chris; WiX-users@lists.sourceforge.net Subject: RE: [WiX-users] Logging in a custom action You have

Re: [WiX-users] Logging in a custom action

2007-04-26 Thread Brian Simoneau
2:31 PM To: Brian Simoneau; WiX-users@lists.sourceforge.net Subject: RE: [WiX-users] Logging in a custom action Thanks for the continuing advice. I'm still not seeing any log out put though. I've commented out the guts of my CA, so now I have just

Re: [WiX-users] Logging in a custom action

2007-04-26 Thread Chris.Rowland
__inout /* ? */ #define __in_bcount(THING) /* ? */ From: Brian Simoneau [mailto:[EMAIL PROTECTED] Sent: Thursday, April 26, 2007 2:59 PM To: Rowland, Chris; WiX-users@lists.sourceforge.net Subject: RE: [WiX-users] Logging in a custom action That code looks

Re: [WiX-users] Logging in a custom action

2007-04-26 Thread Brian Simoneau
:[EMAIL PROTECTED] Sent: Thursday, April 26, 2007 3:05 PM To: Brian Simoneau; WiX-users@lists.sourceforge.net Subject: RE: [WiX-users] Logging in a custom action It's an immediate CA. I tried wrapping my strings with _T() but _T is not defined

Re: [WiX-users] Logging in a custom action

2007-04-26 Thread Chris.Rowland
@lists.sourceforge.net Subject: RE: [WiX-users] Logging in a custom action _T is a macro defined in tchar.h. I believe this was included in earlier Visual Studios because my custom actions were originally written in VS2003. It looks like __out and others are defined in sal.h. -Brian Simoneau

Re: [WiX-users] Logging in a custom action

2007-04-26 Thread Chris.Rowland
:-) From: Brian Simoneau [mailto:[EMAIL PROTECTED] Sent: Thursday, April 26, 2007 4:57 PM To: Rowland, Chris; WiX-users@lists.sourceforge.net Subject: RE: [WiX-users] Logging in a custom action Was the error in the custom action itself? If so, then you can

Re: [WiX-users] Logging in a custom action

2007-04-26 Thread Brian Simoneau
- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, April 26, 2007 5:20 PM To: Brian Simoneau; WiX-users@lists.sourceforge.net Subject: RE: [WiX-users] Logging in a custom action Yeah, the error was in the custom action. (It returned

Re: [WiX-users] Logging in a custom action

2007-04-26 Thread LEMIRE, JOHN
name... From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Thursday, April 26, 2007 2:20 PM To: [EMAIL PROTECTED]; WiX-users@lists.sourceforge.net Subject: Re: [WiX-users] Logging in a custom action Yeah, the error

Re: [WiX-users] Logging in a custom action

2007-04-26 Thread Rob Mensching
-users@lists.sourceforge.net Subject: Re: [WiX-users] Logging in a custom action That code looks the same as what I am using except that I have _T() around my strings. Are you running your custom action immediate or deferred? -Brian Simoneau -Original Message- From: [EMAIL PROTECTED] [mailto

Re: [WiX-users] Logging in a custom action

2007-04-26 Thread Rob Mensching
]; WiX-users@lists.sourceforge.net Subject: Re: [WiX-users] Logging in a custom action _T is a macro defined in tchar.h. I believe this was included in earlier Visual Studios because my custom actions were originally written in VS2003. It looks like __out and others are defined in sal.h. -Brian

Re: [WiX-users] Logging in a custom action

2007-04-26 Thread Rob Mensching
for the CustomAction. When is it being scheduled? From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Thursday, April 26, 2007 2:20 PM To: [EMAIL PROTECTED]; WiX-users@lists.sourceforge.net Subject: Re: [WiX-users] Logging in a custom action Yeah, the error was in the custom

[WiX-users] Logging in a custom action

2007-04-25 Thread Chris.Rowland
Is there any way to write a message to the install log from a custom action? Chris Rowland* Software Engineer * SunGard * Data Management Solutions * 1194 Oak Valley Drive, Suite 100 * Ann Arbor, MI 48108 * Tel 734.332.4423 * Fax 734.332.4440 * http://www.sungard.com/datamanagementsolutions

Re: [WiX-users] Logging in a custom action

2007-04-25 Thread Brian Simoneau
: Wednesday, April 25, 2007 4:08 PM To: WiX-users@lists.sourceforge.net Subject: [WiX-users] Logging in a custom action Is there any way to write a message to the install log from a custom action? Chris Rowland* Software Engineer * SunGard

Re: [WiX-users] Logging in a custom action

2007-04-25 Thread Rob Mensching
@lists.sourceforge.net Subject: [WiX-users] Logging in a custom action Is there any way to write a message to the install log from a custom action? Chris Rowland* Software Engineer * SunGard * Data Management Solutions * 1194 Oak Valley Drive, Suite 100 * Ann Arbor, MI 48108 * Tel 734.332.4423 * Fax 734.332.4440

Re: [WiX-users] Logging in a custom action

2007-04-25 Thread LEMIRE, JOHN
if it overcomes this shortcoming... From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rob Mensching Sent: Wednesday, April 25, 2007 1:48 PM To: [EMAIL PROTECTED]; WiX-users@lists.sourceforge.net Subject: Re: [WiX-users] Logging in a custom action

Re: [WiX-users] Logging in a custom action

2007-04-25 Thread Rob Mensching
by the ExitOnXxx macros in WiX CusotmActions. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of LEMIRE, JOHN Sent: Wednesday, April 25, 2007 2:15 PM To: WiX-users@lists.sourceforge.net Subject: Re: [WiX-users] Logging in a custom action Note huge caveat that ::MsiProcessMessage() doesn't

Re: [WiX-users] logging of RemoveExistingProducts

2006-12-12 Thread André Pönitz
Dana Gutride wrote: When the already installed version was created, were those uninstall custom actions included in it? The installed MSI is called to handle the uninstall sequence, any changes you make to your uninstall sequence will only affect the new installers you create. As far

[WiX-users] logging of RemoveExistingProducts

2006-12-11 Thread André Pönitz
I have a product that needs to run custom actions when uninstalling. This works. However, when trying to install a major upgrade on an already installed version the older version is properly found (i.e. I get something like MSI (s) (3C:DC) [09:51:36:582]: PROPERTY CHANGE: Adding

Re: [WiX-users] logging of RemoveExistingProducts

2006-12-11 Thread Stefan Krueger [MVP]
Are you sure you're looking at the right property? I mean, NEWERVERSIONDETECTED is a strange property name for the detection of an *older* version. That said, the uninstall of the old version should be in the log, masrked with (N) for nested as opposed to (c) for client side and (s) for server