如何导出Windows系统和应用程序事件日志?

时间:2015-05-27 09:15:00

标签: c# .net windows event-log

使用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)。

我的问题:

PathQuery参数中输入什么来导出本地应用程序和系统事件日志?

1 个答案:

答案 0 :(得分:4)

回答我自己的问题:

我的PathQuery实际上是正确的。出了什么问题,是Flags参数。

我不必指定EventExportLogFlags.LogFilePath参数,而是必须指定EventExportLogFlags.ChannelPath参数。

然后导出成功:

EvtExportLog(
    IntPtr.Zero, 
    "Application", 
    "*", 
    "C:\\SomePath\\Application.evtx", 
    EventExportLogFlags.ChannelPath); // <-- HERE!