PowerTip: Identify the last time Users changed passwords in AzureAD

Summary: Using PowerShell to report on Users and the last time Passwords were changed

A picture containing scissors
Description automatically generated

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

The post PowerTip: Identify the last time Users changed passwords in AzureAD appeared first on Scripting Blog.

 

This article was originally published by Microsoft's Azure SQL Database Blog. You can find the original article here.