系统相关
首页 > 系统相关> > CodeGo.net>如何导出Windows系统和应用程序事件日志?

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

作者:互联网

使用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参数中添加什么以导出本地应用程序和系统事件日志?

解决方法:

要回答我自己的问题:

我的路径和查询实际上是正确的.出问题的是Flags参数.

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

然后导出成功:

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

标签:event-log,windows,c,net
来源: https://codeday.me/bug/20191028/1951263.html