Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 .net 中的 System.Diagnostics.EventLog 读取驻留在同一网络上的远程计算机上的事件日志。如果我给出自己的(本地)计算机名称,它工作正常。但我不知道如何传递远程计算机名称。
EventLog Logs = new EventLog("Application",".");
“。” 是本地计算机名称。如何访问名为“venus”的计算机上的日志。
提前致谢。
EventLog Logs = new EventLog("Application","RemotePcMachineName");