Filter Event Viewer for a determined Exception message

windows-server-2003

O/S: Windows Server 2003. IIS 6.0. There is no SQL-Server.

I'm looking for filtering all events that have this Exception message: "Connection request timed out". Would it be possible?
enter image description here

Best Answer

Heres my powershell one-liner.
This will output a table with the the Date and Time of each occurrence on the error.

get-eventlog -LogName Application | Select TimeGenerated, Message, Source | where {($_.Message -like "*Connection request timed out*") -and ($_.Source -like "ASP*")}