采用以下 C# 代码:
EventLog[] eventLogs;
eventLogs = EventLog.GetEventLogs(computername);
foreach (EventLog evt in eventLogs)
{
statusMessagesListBox.Items.Add("evt.Log.ToString(): " + evt.Log.ToString() + "\t\tevt.LogDisplayName: " + evt.LogDisplayName);
}
当我运行它时,我的输出如下所示:
evt.Log.ToString(): Application evt.LogDisplayName: Application
evt.Log.ToString(): HardwareEvents evt.LogDisplayName: Hardware Events
evt.Log.ToString(): Security evt.LogDisplayName: Security
等等,就像那样。但是为什么没有安装日志呢?此外,当我尝试运行此代码时:
var eventLog = new EventLog("Setup", computer);
eventLog.Clear();
eventLog.Dispose();
我收到一条错误消息,指出该计算机上不存在日志“设置”,即使它确实存在。上面的代码适用于除安装日志之外的所有其他事件日志。
如何访问设置事件日志?
作为参考,正在尝试的 .NET 框架是 4.0 和 4.5,目标计算机是 Windows 7 和 2008 R2。