RPA

RPA: How to reset Blue Prism admin password

RPA: How to reset Blue Prism admin password

Robotic Process Automation: Blue Prism v6

Issue: BluePrism admin Password forgotten or lost

Assumption – you have access to the database and you can modify tables

Solution:

To reset the Blue Prism admin password, you will need to access the Blue Prism database and update the password for the admin account. Here are the general steps you can follow:

  1. Stop the Blue Prism service.
  2. Open SQL Server Management Studio and connect to the Blue Prism database.
  3. Run the following SQL query to update the password for the admin account:
Copy codeUPDATE [dbo].[User]
SET Password = 'newpassword'
WHERE UserName = 'admin'
  1. Replace ‘newpassword’ with the desired new password.
  2. Start the Blue Prism service.
  3. Log in to the Blue Prism application using the new admin password.

Please note that the above steps are just general guidelines, and the exact steps may vary depending on your specific Blue Prism installation. It is always recommended to take a backup of the database before making any changes.

This command finds the user with the username admin and resets their password back to the original admin string, but will not force a password change on the next log in.

Use SQL Server Management studio or any SQL Editor, then connect to (LocalDB)\BluePrismLocalDB Server, then write and execute the query below:

USE blueprism

UPDATE dbo.BPAPassword SET salt = ”, hash = ‘208512264222772174181102151942010236531331277169151’, type = 0 WHERE userid = (SELECT userid FROM dbo.BPAUser WHERE username = ‘admin’)

Resources:

Blue Prism v6 admin password reset
Etienne Noumen

Sports Lover, Linux guru, Engineer, Entrepreneur & Family Man.

Share
Published by
Etienne Noumen

Recent Posts

The Importance of Giving Constructive Feedback

Offering employees, coworkers, teammates, and students constructive feedback is a vital part of growth on…

4 days ago

Why Millennials Need To Invest for Retirement Now

Millennials should avoid delaying the inevitable and look into various retirement investment pathways. Here’s why…

4 days ago

A Daily Chronicle of AI Innovations in May 2024

AI Innovations in May 2024

7 days ago

Tips for Ensuring Success Throughout Your Career

For most people, a satisfactory career is essential for leading a happy life. However, ensuring…

2 weeks ago

Different Career Paths in the Pipeline Industry

The pipeline industry is more than pipework and construction, and we explore those details in…

2 weeks ago

SQL Interview Questions and Answers

SQL Interview Questions and Answers In the world of data-driven decision-making, SQL (Structured Query Language)…

3 weeks ago