Added readme.

master 1.0.0
Sean McArdle 2017-07-17 17:01:24 -07:00
parent 8b5e9dbc76
commit 25c4b4053c
1 changed files with 16 additions and 0 deletions

16
readme.md Normal file
View File

@ -0,0 +1,16 @@
# EventPump
### Because I couldn't think of a better name.
A simple command line application that will monitor Windows Event Logs
and write JSON serialized event entries to stdout. These can be reassembled
by other programs such as PowerShell eg: `.\EventPump.exe -log Application -log Security | % { $_ | ConvertFrom-Json | FL }`
Usage: EventPump.exe -log Application -id 63,25
the -id option may contain multiple values separated by
commas but no whitespace.
-v Verbosely print internal events.
--log=VALUE Specify log to collect from, may be used multiple
times.
--id=VALUE Comma separated list of event IDs to filter on
-h, -?, --help Show this help.