cancel
Showing results for 
Search instead for 
Did you mean: 

Need default credentials for Blue Prism trail version

PavanShetkar
Level 2

HI BP team,

I have installed BP learning version with 180 days license. i have followed the steps as mentioned in installation guide and provided the credentials (Username and Password). I couldn't recall the same now, can you please help me with that.

Note: I have tried to login using Username: admin, it was working with these credentials before. But it's showing as wrong credentials. PFB error logs

35984.png

5 REPLIES 5

PavanShetkar
Level 2

Hi @Michael Shillingford

Thanks' for sharing, I have tired the Sql query but its giving below error.

35982.png

Michael_S
Community Team
Community Team

Do you have anything of value in the database Pavan? It may be faster to simply recreate the database and start afresh

LeonardoSQueiroz
Level 10

Hello,

Try the follow step:

1) Open SQL Server Management Studio (SSMS), connect the database, use the command:
use  Data_Your_Base_name_BP;
 
 
2) Use the command, including the table you want to update:
UPDATE BPAPassword 
SET 
    salt = 'bWBTNqWrvq6RbQnns5PpF+Kt7V1gVS97F6R5iZIxV6M=', 
    hash = '9XkueyLzhbhRUMoKedsN3l7ChDmfS811IDymP8ZCEv8='
WHERE 
    userid = (
        SELECT userid 
        FROM BPAUser 
        WHERE username = 'admin'
    ) 
    AND active = 1;
Regards,
Leonardo Soares RPA Developer América/Brazil

Michael_S
Community Team
Community Team

Thank you for correcting my bad syntax @LeonardoSQueiroz! 😍