1
我正在嘗試使用EventLog
獲取與打印機相關的日誌。在C中訪問嵌套的事件日誌#
我列舉系統中所有日誌,使用提示從this question,這樣的:
foreach (var e in EventLogSession.GlobalSession.GetLogNames()) {
Console.WriteLine(e);
}
而且我得到了登錄所需的日誌的名稱 - Microsoft-Windows-PrintService/Operational
。
然而,這段代碼崩潰:
var evt = new EventLog("Microsoft-Windows-PrintService/Operational");
與
An unhandled exception of type 'System.InvalidOperationException' occurred in System.dll
Additional information: The event log 'Microsoft-Windows-PrintService/Operational' on computer '.' does not exist.
我運行MSVC 2015年在管理員。
new EventLog("Application");
就像一個魅力,我如何創建自定義嵌套事件日誌?