Hi there,

I want to send custom debug message to my installer's log file after a custom 
action has been exectued. I found their is a useful information from 
http://www.dalun.com/wix/06.26.2005.htm

      <Binary Id='Customization.vbs' src='Customization.vbs'/>
      <CustomAction Id='test' BinaryKey='Customization.vbs' 
VBScriptCall='Hello' Return='check'/>


               Function LogInfo(msg) Dim rec
                    Set rec = Session.Installer.CreateRecord(1) 
                    rec.StringData(0) = msg
                    LogInfo = Session.Message(&H04000000, rec)
                End Function
                                
                Function Hello
                    LogInfo "Customization is being called here."
                End function


Is there a way that I can pass the custom message to the function Hello intead 
of the static messgae? Or is there a better way to log custom message rather 
than calling VB Script?   

Thanks in advance
Jeff


      
__________________________________________________________________________________
Get more done like never before with Yahoo!7 Mail.
Learn more: http://au.overview.mail.yahoo.com/
------------------------------------------------------------------------------
Come build with us! The BlackBerry&reg; Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9&#45;12, 2009. Register now&#33;
http://p.sf.net/sfu/devconf
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to