cancel
Showing results for 
Search instead for 
Did you mean: 

Forgot Blue Prism Password

BhavyaTaneja
Level 3
Hi,

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
1 BEST ANSWER

Helpful Answers

ritansh.jatwani
Level 9
Hi @Bhavya Taneja,

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"​

View answer in original post

3 REPLIES 3

ritansh.jatwani
Level 9
Hi @Bhavya Taneja,

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"​

Thanks for sharing !

SushmaRajolli
Level 3

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;