Click HERE to see how Saviynt Intelligence is transforming the industry. |
04/12/2022 01:10 PM
Hi Team,
We are using SSM V5.5SP3. We have below queries related to password.
Scenario:-
1. We want to reset AD account password to Temporary password on user enable.
2. This temporary password we want to capture in email notification.
Is there anyway to capture this?
Solved! Go to Solution.
04/12/2022 02:30 PM
Hi Dhanashree,
Documentation below mentions how to set a new password when enabling an AD account :
To set it as temporary, you can use the below block, to include in your ENABLEACCOUNTJSON :
"AFTERMOVEACTIONS": { "userAccountControl": "512", "userPassword": "${randomPassword}", "pwdLastSet": "0" }
Where randomPassword is the password generated according to the settings in your connector, and pwdLastSet forces the user to reset its password.
You can catch that ${randomPassword} as a variable in the email notification that will be triggered when "Enable Account" task will be completed (set up in Endpoint)
Hope this helps.
Regards.