EventViewerX
Provides PowerShell and .NET commands to query, filter, report on, and export Windows Event Logs with typed objects and a graphical viewer.
- •You need to pull specific error events from Application or System logs for a nightly health‑check script.
- •You want to export filtered security events (e.g., failed logins) to CSV/Excel for compliance reporting.
- •You require a programmable way to subscribe to Windows Event Collector (WEC) streams in a C# service.
Get all failed RDP login attempts from the Security log in the last 24 hours and export them to CSV:
```powershell
Import-Module EventViewerX
$filter = "*[System[(EventID=4625) and TimeCreated[timediff(@SystemTime) <= 86400000]]]"
$q = New-EventLogQuery -LogName "Security" -XPath $filter
$events = Invoke-EventLogQuery $q
$events | Select-Object TimeCreated, @{Name='User';Expression={$_.Properties[5].Value}}, @{Name='IP';Expression={$_.Properties[18].Value}} |
Export-EventLog -Path "C:\Reports\FailedRDPLogins.csv"
```Skip the builder — one click puts this in Claude, Cursor, Antigravity and more.
Expect 20–40 minutes in a terminal — or let your AI agent drive it.
mkdir -p ~/.claude/skills/eventviewerx && curl -fsSL https://workflowstacks.com/api/skills/eventviewerx/claude-skill -o ~/.claude/skills/eventviewerx/SKILL.mdOpens the app with this repo with the prompt ready to go — no copy-paste needed.
EventViewerX is a very large C# project (~159k lines across 893 code files, plus 32 test files). It is a full software project: use it through its install path rather than reading it end to end. Last commit this month, MIT license, has a test suite.
- 1README.mdStart here — what it does and how to install it
- 2AGENTS.MDThe instructions the AI actually follows
- 3Sources/EventViewerX/ActiveDirectoryFileTimeValueNormalizer.csInside Sources/EventViewerX/ — the main logic begins here
- 4Examples/Build-CustomProvider.ps1A worked example — copy this to get going
Skip the builder — one click puts this in Claude, Cursor, Antigravity and more.
Expect 20–40 minutes in a terminal — or let your AI agent drive it.
mkdir -p ~/.claude/skills/eventviewerx && curl -fsSL https://workflowstacks.com/api/skills/eventviewerx/claude-skill -o ~/.claude/skills/eventviewerx/SKILL.mdOpens the app with this repo with the prompt ready to go — no copy-paste needed.
Are you the creator of this tool? Claim your listing → and earn 85% of every sale.
Related skills
More automation tools founders pair with this one.