« Find store GUIDs | Main | Goodbye, Monad; hello, PowerShell »
April 21, 2006
Monad event log monitoring
The Monad team blog has a useful Monad script for intelligent event log analysis. The simple way to do it is to say
get-eventlog Application | where {$_.EventID -eq -1018}
but this gets the same set of events every time you run it. The team's script uses a checkpoint file to keep track of the last search it did, and it has a few other nice features as well.
Posted by Paul at April 21, 2006 05:46 AM