Hi all,
Is it possible to generate the history of password changed date for a user.
For example, user A changed password on 2013 Sep 2 and 2014 March 5.
On today when I run the query report, it will display both the changed date for user A in the report
Below is the current query that will only displayed the last password changed date for active user.
SELECT T0.[U_NAME], T0.[LastPwdSet] FROM OUSR T0 WHERE T0.[LOCKED] = 'N'
Thanks