- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
01-08-21 08:26 PM
Anyone aware on how to reset the password of blue prism?
I forgot the password and not able to login. I am using Blue Prism 6.4 version
Answered! Go to Answer.
Helpful Answers
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
01-08-21 08:28 PM
Please use the below query to reset the password of blue prism.
set salt='bWBTNqWrvq6RbQnns5PpF+Kt7V1gVS97F6R5iZIxV6M=',
hash='9XkueyLzhbhRUMoKedsN3l7ChDmfS811IDymP8ZCEv8='where
userid=(select userid from BPAUser where username='admin')
and active=1;
This query will reset the blue prism password provided the username is "admin"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
01-08-21 08:28 PM
Please use the below query to reset the password of blue prism.
set salt='bWBTNqWrvq6RbQnns5PpF+Kt7V1gVS97F6R5iZIxV6M=',
hash='9XkueyLzhbhRUMoKedsN3l7ChDmfS811IDymP8ZCEv8='where
userid=(select userid from BPAUser where username='admin')
and active=1;
This query will reset the blue prism password provided the username is "admin"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
02-08-21 11:16 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
07-10-24 07:15 AM
Hello Community!..
I have used the below query to reset the password, which worked in SQL. When I went back and tried logging BP by user ID admin and password admin it did not work. could anyone help me understand what salt and hash refer to here,
how I can set a password for the user-id admin, and how we will get to know what is password
Update [dbo].[BPAPassword] set salt='bWBTNqWrvq6RbQnns5PpF+Kt7V1gVS97F6R5iZIxV6M=',
hash='Lp4RaPwzd+qL45r3KXz/CTuiNG+aL0tutG1PmEu1Gew='where
userid=(select userid from BPAUser where username='admin')
and active=1;
