我想计算远程服务器的系统事件日志中有多少错误,有没有办法使用 Powershell 或类似程序编写脚本来计算发生了多少错误,然后将其保存在文件中?
答案1
要列出日志Error
中的所有类型:System
someremotehost
Get-EventLog -LogName System -EntryType Error -ComputerName someremotehost
数一数:
Get-EventLog -LogName System -EntryType Error -ComputerName someremotehost | Measure-Object