LOGO OA教程 ERP教程 模切知识交流 PMS教程 CRM教程 开发文档 其他文档  
 
网站管理员

【C#】读取Windows系统事件查看器中最新远程桌面用户成功或失败登陆记录

admin
2025年2月18日 15:47 本文热度 1002

:【C#】读取Windows系统事件查看器中最新远程桌面用户成功或失败登陆记录

查询时,需要注意事件查看器中的各个状态码和相应内容,根据内容灵活设计需要提取的内容:

DateTime startDate = new DateTime(2025, 2, 15); // 例如,从2023年1月1日开始
EventLog eventLog = new EventLog();
eventLog.Log = "Security"; // 可以更改为 "System" 或 "Security" 等
eventLog.Source = "Application"; // 根据需要设置,通常为应用程序名称或"Application"
                                 // 获取所有条目
var entries = eventLog.Entries;


// 过滤出指定日期后的条目
var filteredEntries = entries.Cast<EventLogEntry>()
                             .Where(e => e.TimeGenerated > startDate)
                             .ToList();
int tmpNum = 0;
foreach (var entry in filteredEntries)
{
    //Console.WriteLine($"Time: {entry.TimeGenerated}, Message: {entry.Message}");
    if (entry.EventID == 4624 || entry.EventID == 4625 || entry.EventID == 4778)
    {
        tmpNum++;
        // 解析用户信息,这里简单地从消息中提取用户名,不同系统的事件消息格式可能略有不同,需根据实际情况调整解析逻辑
        string message = entry.Message;
        string tmpMessage = message;
        int startIndex = 0;
        int endIndex = 0;
        if (entry.EventID == 4624 || entry.EventID == 4625)
        {
            string tmpFirstStr = "";
            if (entry.EventID == 4624) { tmpFirstStr = "新登录:"; }
            if (entry.EventID == 4625) { tmpFirstStr = "登录失败的帐户:"; }
            startIndex = message.IndexOf(tmpFirstStr) + tmpFirstStr.Length;
            tmpMessage = message.Substring(startIndex, message.Length - startIndex);
        }


        //获取登录用户名
        string latestLoginUser = string.Empty;
        string tmpUserNameInfo = "";
        if (entry.EventID == 4778 || entry.EventID == 4625) { tmpUserNameInfo = "帐户名:"; }
        if (entry.EventID == 4624) { tmpUserNameInfo = "帐户名称:"; }
        startIndex = tmpMessage.IndexOf(tmpUserNameInfo) + tmpUserNameInfo.Length;
        endIndex = tmpMessage.IndexOf(Environment.NewLine, startIndex);
        if (startIndex > 0 && endIndex > startIndex)
        {
            latestLoginUser = tmpMessage.Substring(startIndex, endIndex - startIndex).Trim();
        }


        //获取登录IP地址
        string latestLoginIP = string.Empty;
        string tmpUserIpInfo = "";
        if (entry.EventID == 4624 || entry.EventID == 4625) { tmpUserIpInfo = "源网络地址:"; }
        if (entry.EventID == 4778) { tmpUserIpInfo = "客户端地址:"; }
        startIndex = tmpMessage.IndexOf(tmpUserIpInfo) + tmpUserIpInfo.Length;
        endIndex = tmpMessage.IndexOf(Environment.NewLine, startIndex);
        if (startIndex > 0 && endIndex > startIndex)
        {
            latestLoginIP = tmpMessage.Substring(startIndex, endIndex - startIndex).Trim();
        }


        //登录结果
        string tmpLoginResult = "";
        if (entry.EventID == 4778 || entry.EventID == 4624) { tmpLoginResult = "成功。"; }
        if (entry.EventID == 4625)
        {
            tmpLoginResult = "失败。";
            string tmpErrorInfo = "	失败原因:";
            startIndex = tmpMessage.IndexOf(tmpErrorInfo) + tmpErrorInfo.Length;
            endIndex = tmpMessage.IndexOf(Environment.NewLine, startIndex);
            if (startIndex > 0 && endIndex > startIndex)
            {
                tmpLoginResult = tmpErrorInfo + tmpMessage.Substring(startIndex, endIndex - startIndex).Trim();
            }
        }


        Console.WriteLine($"第 {tmpNum} 次登录(" + entry.EventID + ",时间:" + entry.TimeGenerated);
        Console.WriteLine("登录帐户名:" + latestLoginUser);
        Console.WriteLine("登录IP地址:" + latestLoginIP);
        Console.WriteLine("登录结果:" + tmpLoginResult);
    }
}

操作结果如下:

​ 

该文章在 2025/2/18 15:47:58 编辑过
点晴ERP是一款针对中小制造业的专业生产管理软件系统,系统成熟度和易用性得到了国内大量中小企业的青睐。
点晴PMS码头管理系统主要针对港口码头集装箱与散货日常运作、调度、堆场、车队、财务费用、相关报表等业务管理,结合码头的业务特点,围绕调度、堆场作业而开发的。集技术的先进性、管理的有效性于一体,是物流码头及其他港口类企业的高效ERP管理信息系统。
点晴WMS仓储管理系统提供了货物产品管理,销售管理,采购管理,仓储管理,仓库管理,保质期管理,货位管理,库位管理,生产管理,WMS管理系统,标签打印,条形码,二维码管理,批号管理软件。
点晴免费OA是一款软件和通用服务都免费,不限功能、不限时间、不限用户的免费OA协同办公管理系统。
Copyright 2010-2025 ClickSun All Rights Reserved