u/EduardsGrebezs

Identify which MFA methods your users actually use.

A simple KQL query against Sign-in logs gives you visibility into the MFA methods users are actually using:

SigninLogs
| where TimeGenerated > ago(90d)
| where ResultType == 0
| mv-expand AuthDetails = todynamic(AuthenticationDetails)
| extend AuthMethod = tostring(AuthDetails.authenticationMethod)
| where isnotempty(AuthMethod)
| where AuthMethod !in ("Previously satisfied")
| summarize AuthEvents = count(), Users = dcount(UserPrincipalName) by AuthMethod
| order by AuthEvents desc

https://preview.redd.it/nk9rrwqozj0h1.png?width=2664&format=png&auto=webp&s=7b6fab415cec249205902a39a05dd13f8c96e7fe

reddit.com
u/EduardsGrebezs — 3 days ago

Windows Secure Boot 2011 certificates will expire in June 2026, and devices need to move to the 2023 Secure Boot certificates and newer boot manager.

Microsoft Defender XDR now provides visibility into devices that still need this update, making it easier to track readiness and reduce exposure across the environment.

Exposure Management → Recommendations → Devices → Misconfigurations (good adjustment if you have also Windows Servers onboarded to Defender for Endpoint P2)

https://preview.redd.it/0zmvahs01g0h1.png?width=1903&format=png&auto=webp&s=a04983627c933f6ad2ddeca62445ccc40a85e1cd

https://preview.redd.it/liu81hs01g0h1.png?width=1901&format=png&auto=webp&s=45ac528a844e4c5bac2af9344705953e14be4122

reddit.com
u/EduardsGrebezs — 3 days ago