Forgot Password

Deepti05

New Member
I have forgot my login password for Blue Prism. I was working in my local computer and now I am not sure how to recover my password. Please help me out. I am currently using Blue Prism version 6.4
 

bharath reddy

New Member
Hello Deepti, you can reset your password by execute below query

use BP (here BP is the database name)

UPDATE BPAUSER
SET PASSWORD= '208512264222772174181102151942010236531331277169151'
WHERE USERNAME= 'ADMIN'
 

Sachin_Kharmale

Active Member
Hi i am unable to reset the password.
Hey @mishti ,
1. Go to SQL Server and Select your Blue Prism Data Base.

2.
use Bellow command to reset your blue prism password it will update password and set password as admin

UPDATE BPAPassword SET salt='bWBTNqWrvq6RbQnns5PpF+Kt7V1gVS97F6R5iZIxV6M=',hash='9XkueyLzhbhRUMoKedsN3l7ChDmfS811IDymP8ZCEv8='
WHERE userid=(SELECT userid FROM BPAUser WHERE username='admin') AND active=1;


I hope it will help you..!
 

hemanth kumar

New Member
Hi Divya,

Follow this -

Type this in SQL query console

1) use {ur DB name}---> Open BP and check configure connection and there u can find the name of DB connection.

2)UPDATE BPAPassword SET salt='bWBTNqWrvq6RbQnns5PpF+Kt7V1gVS97F6R5iZIxV6M=',hash='9XkueyLzhbhRUMoKedsN3l7ChDmfS811IDymP8ZCEv8='
WHERE userid=(SELECT userid FROM BPAUser WHERE username='admin') AND active=1;


This will reset the password to admin
 
Top