计算系统日志中有多少错误?

计算系统日志中有多少错误?

我想计算远程服务器的系统事件日志中有多少错误,有没有办法使用 Powershell 或类似程序编写脚本来计算发生了多少错误,然后将其保存在文件中?

答案1

要列出日志Error中的所有类型:Systemsomeremotehost

Get-EventLog -LogName System -EntryType Error -ComputerName someremotehost

数一数:

Get-EventLog -LogName System -EntryType Error -ComputerName someremotehost | Measure-Object

相关内容