码迷,mamicode.com
首页 > Windows程序 > 详细

C#读取Windows日志

时间:2016-03-07 13:34:38      阅读:425      评论:0      收藏:0      [点我收藏+]

标签:

管理-->事件查看器

 
技术分享
 
可以查看【应用程序】、【安全】、【系统】等分类的日志
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
static void Main(string[] args)
{
    EventLog eventlog = new EventLog();
    eventlog.Log = "Security";
    //"Application"应用程序, "Security"安全, "System"系统
    EventLogEntryCollection eventLogEntryCollection = eventlog.Entries;
    foreach (EventLogEntry entry in eventLogEntryCollection)
    {
        //if (entry.EventID == 4624)
        //{
        //    continue;
        //}
        string info = string.Empty;
        if (@"TaskScheduler" == entry.Source.ToString())
        {
            info += "类型:" + entry.EntryType.ToString() + ";";
            info += "日期" + entry.TimeGenerated.ToLongDateString() + ";";
            info += "时间" + entry.TimeGenerated.ToLongTimeString() + ";";
            info += "来源" + entry.Source.ToString() + ";";
            Console.WriteLine(info);
        }
    }
}



 

 

C#读取Windows日志

标签:

原文地址:http://www.cnblogs.com/gossip/p/5249982.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!