Link to home
Start Free TrialLog in
Avatar of isames
isames

asked on

Active Directory

I have user whose password has been changed in Active Directory twice without their consent.

Is there a way to check to see all the users who might have changed the user's password in last 24 hours?

We have 2008 datacenter r2 domain controller.
Avatar of dmwynne
dmwynne
Flag of United States of America image

You can run powershell to get this:

Get-ADUser -filter * -properties passwordlastset, passwordneverexpires | sort-object name | select-object Name, passwordlastset, passwordneverexpires | Export-csv -path c:\temp\user-password.csv
ASKER CERTIFIED SOLUTION
Avatar of Nathan Jones
Nathan Jones

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial