Summary: Using PowerShell to report on Users and the last time Passwords were changed
Hey, Doctor Scripto! I need to report on users and when they updated their passwords In AzureAD. Could you show me how ?
Most certainly, I love to provide a helping hand however I can. Using the Get-Msoluser Cmdlet just target the LastPasswordChangeTimeStamp Attribute. Here’s an example of it in use.
Get-MsolUser | Select-Object DisplayName, UserPrincipalName, LastPasswordChangeTimeStamp
PowerShell, Doctor Scripto, PowerTip, AzureAD
0 comments