Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Exclude Engine Updates and Empty lines #101

Merged
merged 2 commits into from
Dec 11, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions General queries/WD AV Signature and Platform Version.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
let startDate = ago(7d);
FileCreationEvents
| where InitiatingProcessCommandLine has "MpSigStub.exe"
//To exclude Engine Updates and non update events
| where InitiatingProcessParentFileName != "AM_Engine.exe" and InitiatingProcessParentFileName != "wuauclt.exe"
manuelhauch marked this conversation as resolved.
Show resolved Hide resolved
// Comment the below line if you're looking specifically for a computer
| where EventTime > startDate
// Uncomment the line below when looking for info regarding a specific computer
Expand Down