Created
July 7, 2025 19:08
-
-
Save CarissaDurko/6a7eb90f92877337ef19bb39f23cadc9 to your computer and use it in GitHub Desktop.
KQL Locked Accounts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| IdentityLogonEvents | |
| | where TimeStamp > ago(30d) | |
| | where ActionType == "LogonFailed" | |
| | where AccountDomain == "enterdomainhere.com" | |
| | where FailureReason contains ("Locked") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment