我需要将自定义消息从我的 MSI 包中写入 MSI 日志。这该怎么做?
问问题
1211 次
1 回答
4
为此,您可以创建自定义操作,推荐使用 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
于 2012-05-07T07:24:36.900 回答