使用EvtExportLog
function,我目前无法为Path
和/或Query
参数指定正确的值。
我的目标是导出本地应用和系统事件日志。
我试过了:
EvtExportLog(
IntPtr.Zero,
"Application",
"*",
"C:\\SomePath\\Application.evtx",
EventExportLogFlags.LogFilePath);
使用以下P / Invoke定义:
[Flags]
private enum EventExportLogFlags
{
ChannelPath = 1,
LogFilePath = 2,
TolerateQueryErrors = 0x1000
};
[DllImport(@"wevtapi.dll",
CallingConvention = CallingConvention.Winapi,
CharSet = CharSet.Auto,
SetLastError = true)]
private static extern bool EvtExportLog(
IntPtr sessionHandle,
string path,
string query,
string targetPath,
[MarshalAs(UnmanagedType.I4)] EventExportLogFlags flags);
不幸的是,该函数返回false
,最后一个错误代码为2(ERROR_FILE_NOT_FOUND)。
我的问题:
在Path
和Query
参数中输入什么来导出本地应用程序和系统事件日志?
答案 0 :(得分:4)
回答我自己的问题:
我的Path
和Query
实际上是正确的。出了什么问题,是Flags
参数。
我不必指定EventExportLogFlags.LogFilePath
参数,而是必须指定EventExportLogFlags.ChannelPath
参数。
然后导出成功:
EvtExportLog(
IntPtr.Zero,
"Application",
"*",
"C:\\SomePath\\Application.evtx",
EventExportLogFlags.ChannelPath); // <-- HERE!