mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-06-21 13:23:36 +00:00
Merge pull request #8127 from BenMcGarry/patch-1
Update WDAC hunting query
This commit is contained in:
@ -30,10 +30,10 @@ This capability is supported beginning with Windows version 1607.
|
|||||||
Here is a simple example query that shows all the WDAC events generated in the last seven days from machines being monitored by Microsoft Defender ATP:
|
Here is a simple example query that shows all the WDAC events generated in the last seven days from machines being monitored by Microsoft Defender ATP:
|
||||||
|
|
||||||
```
|
```
|
||||||
MiscEvents
|
DeviceEvents
|
||||||
| where EventTime > ago(7d) and
|
| where Timestamp > ago(7d) and
|
||||||
ActionType startswith "AppControl"
|
ActionType startswith "AppControl"
|
||||||
| summarize Machines=dcount(ComputerName) by ActionType
|
| summarize Machines=dcount(DeviceName) by ActionType
|
||||||
| order by Machines desc
|
| order by Machines desc
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user