如何将自定义消息写入MSI日志?

时间:2012-05-07 06:42:43

标签: windows-installer

我需要从MSI包中向MSI日志编写自定义消息。怎么做?

1 个答案:

答案 0 :(得分:3)

为此,您可以创建自定义操作,建议使用Win32 DLL。不幸的是,我只为您提供了一个VBS样本,您可以将其作为起点,但不建议在正式版本的软件包中使用:

Function WriteToLog(TextToWrite)
  Const MsgType = &H04000000
  Set rec = Installer.CreateRecord(1)
  rec.StringData(1) = TextToWrite
  Session.Message MsgType, rec
  'Msgbox TextToWrite
WriteToLog = 0
End Function