This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Knowledge Base
- :
- Writing to the Log File from a Custom Action in an MSI
Subscribe
- Mark as New
- Mark as Read
- Subscribe
- Printer Friendly Page
- Report Inappropriate Content
Writing to the Log File from a Custom Action in an MSI
Writing to the Log File from a Custom Action in an MSI
Summary
In an MSI, It is possible for most custom action types to write to the log.Synopsis
In an MSI, It is possible for most custom action types to write to the log.Discussion
In an MSI, it is possible custom actions to write to the MSI log as long as they are not written in managed code. In order to have a custom action write to the MSI log, refer to the appropriate section below.InstallScript Custom Action:
In an InstallScript custom action, SprintfMsiLog can be called to write a string to the MSI log file. For example, the following InstallScript code prototypes and defines an InstallScript custom action called LoggingTestInstallScript.
#include "ifx.h" // standard custom action prototype export prototype LoggingTestInstallScript(HWND); // custom action definition function LoggingTestInstallScript(hInstall) begin SprintfMsiLog("Calling LoggingTestInstallScript..."); // return success to MSI return ERROR_SUCCESS; end;
After built and run, the MSI log will contain something similar to:
InstallShield 25:00:00: Invoking script function LoggingTestInstallScript 1: Calling LoggingTestInstallScript... InstallShield 25:00:00: CallScriptFunctionFromMsiCA() ends Action ended 25:00:00: callLoggingTest. Return value 1.
The SprintfMsiLog function is similar to the Sprintf and SprintfBox functions in that it can handle placeholders ("%s" or "%d" fields, called "format specifiers") in the message string to splice in the values of string or numeric variables.
PowerShell Custom Action: Starting with InstallShield 2015, PowerShell custom actions within an MSI can now write to the log. The following example shows the necessary cmdlet and its usage.
trace-info ?LogMessage ?I am a PowerShell custom action?
Prior to InstallShield 2015, PowerShell custom actions within an MSI could not write to the log.
VBScript Custom Action: With VBScript, the general process is to assemble a record containing the message information, and then send the record to the running installation. Installer.CreateRecord can be used to create the message record, and Session.Message can be used to send the record to the installer. The following code shows an example of how to follow this process to write to the log.
Const msiMessageTypeInfo = &H04000000 ' create the message record Set msgrec = Installer.CreateRecord(1) field 0 is the template msgrec.StringData(0) = "Log: [1]" ' field 1, to be placed in [1] placeholder msgrec.StringData(1) = "Calling LoggingTestVBS..." ' send message to running installer Session.Message msiMessageTypeInfo, msgrec
After built and run, the MSI log will contain something similar to:
Action 25:00:00: callLoggingTestVBS. Action start 25:00:00: callLoggingTestVBS. [...lines omitted...] Log: Calling LoggingTestVBS... Action ended 25:00:00: callLoggingTestVBS. Return value 0.
MSI DLL Custom Action: In an MSI DLL custom action, the process of writing to the log file is similar to the VBScript code, except that MsiCreateRecord is used to create the message record and MsiProcessMessage is used to pass the record to the running installer. For example, see the following code.
#pragma comment(lib, "msi.lib") #include <msi.h> #include <msiquery.h> #include <stdio.h> // standard MSI DLL custom action signature UINT __stdcall LoggingTestCpp(MSIHANDLE hInstall) { PMSIHANDLE hRecord = MsiCreateRecord(1); // field 0 is the template MsiRecordSetString(hRecord, 0, "Log: [1]"); // field 1, to be placed in [1] placeholder MsiRecordSetString(hRecord, 1, "Calling LoggingTestCpp..."); // send message to running installer MsiProcessMessage(hInstall, INSTALLMESSAGE_INFO, hRecord); return ERROR_SUCCESS; }
As usual with MSI DLL?s, a .DEF file must also be created to properly export the function names from the DLL. Following the above example, a sample .DEF file would contain:
LIBRARY "LoggingTestCpp" ; DLL name EXPORTS ; exported function names LoggingTestCpp
After built and run, the MSI log will contain something similar to:
Action 25:00:00: callLoggingTestCpp. Action start 25:00:00: callLoggingTestCpp. [...lines omitted...] Log: Calling LoggingTestCpp... Action ended 25:00:00: callLoggingTestCpp. Return value 1.
100% helpful
(1/1)
Comments
Apr 19, 2019
11:29 AM
- Mark as Read
- Mark as New
- Permalink
- Report Inappropriate Content
Apr 19, 2019
11:29 AM
Why doesn't this KB article have example C# code for Managed Code Custom Actions?