Office 365 Confirm last password change time for users
Open Powershell as Administrator
Run the following:
Connect-MSOLservice
Get last password change time:
get-msoluser |fl displayname,lastpasswordchangetimestamp
You can export it to a file as well:
get-msoluser |fl displayname,lastpasswordchangetimestamp >c:\passchange.txt
Comments
Post a Comment