WDAC audit logs #802
Replies: 2 comments
-
|
Hi, |
Beta Was this translation helpful? Give feedback.
-
|
The events that have
Also, those event don't have the I could however change the behavior so that they will still be visible in the app if you want to generate reports or perform advanced filtering. |
Beta Was this translation helpful? Give feedback.

Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
@

Hey, hope you're well.
I'm working on a Power BI dashboard that gives me a clear, single-screen view of all WDAC blocks and filter by single user, device or a whole department. The goal is to speed up the process of whitelisting apps and help with rolling out WDAC across our estate.
However, I'm running into an issue — the AppControl Manager (via MDE Advanced Hunting) is only showing me 10 logs, whereas when I run the query directly in MDE Advanced Hunting, I see 719 logs for the same machines over the past 7 days.
Has anyone come across this discrepancy before? Any ideas on how I can tweak my Power BI query or rule to match what AppControl Manager is seeing?
And also, i'm seeing a lot of blocks for DLLs listed as blocked in MDE logs but not in AppControl Manager, any advice for tackling DLLs as its becoming unmanageable to the point where it makes WDAC too much of an admin overhead.
Thanks in advance!
let
// Step 1: Use the filter string from the other query
DeviceFilter = DeviceFilterText,
DeviceEvents
| where (ActionType startswith 'AppControlCIScriptAudited'
or ActionType startswith 'AppControlCIScriptBlocked'
or ActionType startswith 'AppControlCodeIntegrityOriginBlocked'
or ActionType startswith 'AppControlCodeIntegrityOriginAudited')
| where {DeviceFilter}
| project Timestamp, DeviceName, ActionType, FileName, FolderPath, ReportId,
InitiatingProcessAccountName, InitiatingProcessFileName,
InitiatingProcessCommandLine,
InitiatingProcessVersionInfoFileDescription,
InitiatingProcessParentFileName, InitiatingProcessFolderPath,
InitiatingProcessVersionInfoProductVersion
| sort by Timestamp desc",
in
Cleaned
Beta Was this translation helpful? Give feedback.
All reactions