cancel
Showing results for 
Search instead for 
Did you mean: 

Password expired learning edition

Rhian.Lowe
Level 4
Hi.

I'm locked out of my learning edition. Have been for some time now and I remember getting told the easiest way is to uninstall and reinstall.
I've done this this morning and it is still stating my password expired. I swear I didn't change the password first time around either. I've tried every password I can think of but still no.

Please help quickly I really need to get back on to my training as soon as possible!
(It's v7.1.1)

Thanks
Rhian
2 REPLIES 2

EvertBoelaert
Level 3
Hi Rhian,

Assuming your Trial of 180 days isn't expired, you can reset your the admin password for your local Blue Prism installation by executing following query on the database:
USE blueprism
UPDATE BPAPassword SET salt = '', hash = '208512264222772174181102151942010236531331277169151', type = 0
WHERE userid = (SELECT userid FROM BPAUser WHERE username = 'admin')
More information can be found in this thread.

Hi @Rhian.Lowe,

Blue Prism can't run without a SQL server database firstly as you can also see from the following installation guide: Install and configure trial and learning editions

To access the tables within database and execute SQL scripts, you need a software called SQL Server Management Studio​

Once you are able to install the software, login to the server which is configured by default while installation as shown below:

36331.jpg

​Blue Prism Configured Database:

36332.jpg

Same table you should be able to view inside your SSMS software once connected to server:


36333.jpg

In order to execute script, you need to click on the 'New Query' icon or press 'CTRL+N' which opens up a new scripting window:

36334.png



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


Once, you have written the script click on the 'Execute' button or press 'F5':

36335.png


------------------------------
----------------------------------
Hope it helps you out and if my solution resolves your query, then please mark it as the 'Best Answer' so that the others members in the community having similar problem statement can track the answer easily in future

Regards,
Devneet Mohanty
Intelligent Process Automation Consultant | Sr. Consultant - Automation Developer,
Wonderbotz India Pvt. Ltd.
Blue Prism Community MVP | Blue Prism 7x Certified Professional
Website: https://devneet.github.io/
Email: devneetmohanty07@gmail.com

----------------------------------
------------------------------

----------------------------------
Hope it helps you out and if my solution resolves your query, then please provide a big thumbs up so that the others members in the community having similar problem statement can track the answer easily in future.

Regards,
Devneet Mohanty
Intelligent Process Automation Consultant | Technical Business Analyst,
WonderBotz India Pvt. Ltd.
Blue Prism Community MVP | Blue Prism 7x Certified Professional
Website: https://devneet.github.io/
Email: devneetmohanty07@gmail.com

----------------------------------