我需要从MSI包中向MSI日志编写自定义消息。怎么做?
答案 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