Reset AD User Password -Action
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2022 10:29 PM - edited 11-17-2022 10:42 PM
Hi we are using Reset AD User Password Action in the flow , whenever this flow getting executed it is showing success status without any error message. but when user tries too login with the new password he is getting an error with wrong password.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2022 01:37 AM
The password you are supplying is not encrypted, the field expects an encrypted value and you are passing it an unencrypted string, so it will be setting the user password to the decrypted version of Qwertyasdf123#.
In order for this to work you will need to use GlideEncrypter or ScopedEncrypter to encrypt the plain text string before passing it to the action.
Hope this helps,
Richard
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2022 01:56 AM
Hi Richard,
I have created a custom action to pass this plain string into password 2 way encrypted
1.
2.
3.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2022 02:04 AM
In Step 2 you will need to have
outputs.passwe = new GlideEncrypter().encrypt(inputs.passW);
If you are in a scope which you likely will be you will need
outputs.passwe = new ScopedEncrypter().encrypt(inputs.passW);
N.B. I think I recall that ScopedEncrypter is in com.snc.ihub_spoke_util_pack.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2025 12:24 AM
Hi @Richard Hine , @Sravani36 : I am facing the same issue, response is 204, even it is resetting the password in ENTRA but I am not able to login with new password,
Please help to resolve