User Profile
am1357
Brass Contributor
Joined 3 years ago
User Widgets
Recent Discussions
Help with KQL / Advanced Hunting - Antivirus Scan
Hi, Trying to come up with a solution to find all devices via Advanced Hunting where a full scan was never successful. The report that can be downloaded via `Defender XDR > Reports > Device Health > Microsoft Defender Antivirus Health` as well as the device health page only provide the result of the last antivirus scan. If a device ran a full scan successfully in the past but the most recent full scan was cancelled the report shows that the full scan failed. Here's an example of what I mean: The device health status shows "Full scan failed" with a failed scan on March 28, 2024 at 3:35:57PM. When querying the device via Advanced Hunting (see query below) I receive the information that a full scan successfully ran on March 28, 2024 at 3:35:36PM. Here's the query I am currently using and I already played around with it a little bit (distinct, summarize). I could export it to Excel and then remove duplicate entries but was hoping that can be done with KQL: DeviceEvents | where ActionType has_any ("AntivirusScanCompleted", "AntivirusScanCancelled") | extend AdditionalFields = parse_json(AdditionalFields) | extend ScanType = AdditionalFields.["ScanTypeIndex"] | where ScanType == "Full" | project Timestamp, DeviceName, ActionType This is the result I would like the query to return. If any device has had an entry for `ActionType == AntivirusScanCompleted` and `ScanType == Full` then all rows for that device should be removed.MDI NetworkActivityEntityResolver Log Warnings
Hi, I am seeing a lot of NetworkActivityEntityResolver warnings in the Microsoft.Tri.Sensor.log on one DC. There are no open sensor integration/health alerts in the M365D portal. Here's what the logs look like. This warning with different computer object IDs is being generated every second: NetworkActivityEntityResolver ResolveNetlogonAsync Parsed OperationType=NetrLogonSamLogonEx PayloadLength=800 SourceComputerId=XXXXXX Where would I start to troubleshoot this issue? ThanksSolved815Views0likes3Comments