Microsoft
Software
Hardware
Network
Question : Query Event Log
hi,
This is for windows server 2008 standard edition.
how would you query the event log (powershell?) that filters on a date range for
specific event sources (source01 source02) for specific level (error) that contains keyword in the error description such as 'out of bound'?
TIA!
Answer : Query Event Log
You can also use the "-message" parameter to filter out the string you want
get-eventlog application -entrytype Error -after $FromDay -before $UntilDay -message "*out of bound*" -source source01
Random Solutions
Windows 7 Network Port Scanner
Firefox not wroking well on Ubuntu Linux
Blue screen XP
Bak File
C# app.config file, can we set a subkey? I mean a key under another key hierarchically?
Multiple selections in dropdown
HTML Editor - change default background color
Minimizing Database Queries and CFOutput
EXE files are being blocked
Timing in objective-c for iphone - How do I wait until data returned from URL without freezing the User Interface?