Filter Event logs with Powershell

This command helps filter SYSTEM event log entries.

get-eventlog system | where {$_.Message -match "Office" -and $_.Source -match "UmrdpService"} | format-table -wrap -autosize -property Message

Published Sunday, February 25, 2007 6:25 PM by steve schofield
Filed under:

Comments

No Comments