I'd like to count how many errors the are the system event log of a remote server(s) Is there a way of scripting this using Powershell or something similar to count how many errors have occurred and then save it in a file?

link|improve this question

59% accept rate
Do you want to save the error list, or just its count, to file? – jscott Aug 24 '11 at 15:14
feedback

1 Answer

up vote 2 down vote accepted

To list all Error types from the System log on someremotehost:

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

To count them:

Get-EventLog -LogName System -EntryType Error -ComputerName someremotehost | Measure-Object
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.