Query Details
//This query identifies Windows Servers not compliant with domain firewall profile protection DeviceTvmSecureConfigurationAssessment | where ConfigurationId == "scid-2072" //scid for Domain Profile protection | where IsCompliant != "1" //We only want to filter what ISN'T compliant! | where OSPlatform contains "WindowsServer" //For our use case, we only care about Servers. | project DeviceName
This query is designed to find Windows Servers that are not compliant with domain firewall profile protection. Here's a breakdown of what it does:
DeviceTvmSecureConfigurationAssessment, which contains security configuration assessments for devices.scid-2072, which relates to domain profile protection.
Philip Marsh
Released: November 10, 2024
Tables
Keywords
Operators