如何从自定义操作 DLL 访问 MSI 错误表,以便可以将自定义消息添加到错误表中?
问问题
448 次
1 回答
0
您可以使用MsiCreateRecord。第一个记录字段必须包含错误表中的错误 ID。
UINT __stdcall ShowErrorMessage(MSIHANDLE hInstall)
{
//Load the error and format it
PMSIHANDLE hError = MsiCreateRecord(2);
MsiRecordSetInteger(hError, 1, <error_id>);
MsiRecordSetString(hError, 2, <parameter_to_format>);
//Display the message
MsiProcessMessage(hInstall,INSTALLMESSAGE_ERROR,hError);
return ERROR_SUCCESS;
}
于 2012-06-01T06:07:36.220 回答