需要通过我的安装程序启用事件查看器中的日志记录。一直在使用:
> wevtutil im "path\...etwManifest.man" /mf:"path\....etwManifest.dll" /rf:"path\...etwManifest.dll" /sl: <name>
通过CMD启用日志记录,但希望集成到Wix中。还需要启用分析和调试日志。
开始于:
<Component Id="etwManifest.dll">
<File Id="etwManifest.dll" Directory="ProgramFilesFolder" KeyPath="yes"
Source="!(wix._NTTREE)\path\....etwManifest.dll" />
</Component>
<Component Id="etwManifest.man">
<File Id="etwManifest.man" Directory="ProgramFilesFolder" KeyPath="yes"
Source="!(wix._NTTREE)\path\....man">
<util:EventManifest MessageFile="[etwManifest.dll]" ResourceFile="[etwManifest.dll]"></util:EventManifest>
</File>
我无法看到如何启用分析和调试日志记录,我还没有尝试过运行它,但我认为这不会起作用。有什么指针吗?
非常感谢。