-
-
Save nicolonsky/b567a36af60cf81583a7f01d71b06dd6 to your computer and use it in GitHub Desktop.
Get Windows LAPS Password retrieval events
This file contains 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
AuditLogs | |
| where TimeGenerated > ago(360d) | |
| where OperationName == 'Recover device local administrator password' | |
| mv-expand TargetResources | |
| extend DeviceName = TargetResources.displayName | |
| extend Actor = InitiatedBy.user.userPrincipalName | |
| extend DeviceId = TargetResources.id | |
| project TimeGenerated, ActivityDisplayName, Actor, DeviceName, DeviceId |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment