我需要从 windows 中的安全日志中读取,但用户将没有管理权限,并且应用程序会抛出异常,
EventLog[] a = EventLog.GetEventLogs();
foreach (var item in a)
{
if (item.Log == "Security")
{
foreach (EventLogEntry item2 in item.Entries)//The exception thrown here
{
//TODO
}
}
}
我只想看书,不想写东西。如何在没有这些权限的情况下访问这些条目?