Track Files Deleted with Defender Advanced Hunting

DeviceFileEvents
| where ActionType == "FileDeleted"
| where FolderPath startswith @"C:\Users"
| join kind=inner (
DeviceInfo
| summarize arg_max(Timestamp, *) by DeviceId
) on DeviceId
| where DeviceType == "Server"
| project Timestamp, DeviceName, ReportId, InitiatingProcessAccountName, InitiatingProcessFileName, InitiatingProcessCommandLine, FolderPath, FileName, SHA256
| order by Timestamp desc
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading...