<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Unable to reset password in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Unable-to-reset-password/m-p/82622#M34015</link>
    <description>&lt;P&gt;I am unable to login to blueprism app using the below. There is no option to reset password as well. Please advise how to reset password.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="28479.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28609iD854402D74A310FC/image-size/large?v=v2&amp;amp;px=999" role="button" title="28479.png" alt="28479.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Nikita Satpathy&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Thu, 07 Mar 2024 05:21:00 GMT</pubDate>
    <dc:creator>NikitaSatpathy</dc:creator>
    <dc:date>2024-03-07T05:21:00Z</dc:date>
    <item>
      <title>Unable to reset password</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Unable-to-reset-password/m-p/82622#M34015</link>
      <description>&lt;P&gt;I am unable to login to blueprism app using the below. There is no option to reset password as well. Please advise how to reset password.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="28479.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/28609iD854402D74A310FC/image-size/large?v=v2&amp;amp;px=999" role="button" title="28479.png" alt="28479.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Nikita Satpathy&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 07 Mar 2024 05:21:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Unable-to-reset-password/m-p/82622#M34015</guid>
      <dc:creator>NikitaSatpathy</dc:creator>
      <dc:date>2024-03-07T05:21:00Z</dc:date>
    </item>
    <item>
      <title>RE: Unable to reset password</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Unable-to-reset-password/m-p/82623#M34016</link>
      <description>&lt;P&gt;Dear Nikita,&lt;/P&gt;
&lt;P&gt;To reset the Blue Prism password, you typically need access to the Blue Prism database where user credentials are stored. Here's a general approach to reset a password in Blue Prism:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Access Database&lt;/STRONG&gt;: Log in to the Blue Prism database using appropriate database management tools such as SQL Server Management Studio for SQL Server databases or MySQL Workbench for MySQL databases.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Locate User Table&lt;/STRONG&gt;: Identify the table in the Blue Prism database that stores user information. This table usually contains columns like Username, Password, and other user-related fields.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Update Password&lt;/STRONG&gt;: Write and execute a SQL query to update the password for the user whose password needs to be reset. For example:&lt;/P&gt;
&lt;PRE&gt;
&lt;DIV class="dark bg-gray-950 rounded-md"&gt;
&lt;DIV class="flex items-center relative text-token-text-secondary bg-token-main-surface-secondary px-4 py-2 text-xs font-sans justify-between rounded-t-md"&gt;&lt;SPAN&gt;sq1&lt;/SPAN&gt;&lt;SPAN class="" data-state="closed"&gt;&lt;BUTTON class="flex gap-1 items-center"&gt;&lt;BR /&gt;&lt;/BUTTON&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV class="p-4 overflow-y-auto"&gt;&lt;CODE class="!whitespace-pre hljs language-sql"&gt;&lt;SPAN class="hljs-keyword"&gt;UPDATE&lt;/SPAN&gt; Users
&lt;SPAN class="hljs-keyword"&gt;SET&lt;/SPAN&gt; Password &lt;SPAN class="hljs-operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="hljs-string"&gt;'new_password'&lt;/SPAN&gt;
&lt;SPAN class="hljs-keyword"&gt;WHERE&lt;/SPAN&gt; Username &lt;SPAN class="hljs-operator"&gt;=&lt;/SPAN&gt; &lt;SPAN class="hljs-string"&gt;'username'&lt;/SPAN&gt;;
&lt;/CODE&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/PRE&gt;
&lt;P&gt;Replace &lt;CODE&gt;'new_password'&lt;/CODE&gt; with the desired new password and &lt;CODE&gt;'username'&lt;/CODE&gt; with the username of the user whose password you want to reset.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Commit Changes&lt;/STRONG&gt;: After executing the SQL query, commit the changes to the database to ensure that the password update is applied.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Notify User&lt;/STRONG&gt;: Inform the user whose password was reset about their new password. It's a good practice to use temporary passwords that users must change upon their next login for security reasons.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Test&lt;/STRONG&gt;: Test the new password to ensure that the reset was successful, and that the user can log in to Blue Prism with the updated credentials.&lt;/P&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Please go trough this link as well&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.youtube.com/watch?v=qNy4Yw7lysw" target="test_blank"&gt;https://www.youtube.com/watch?v=qNy4Yw7lysw&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Please use the below query to reset the password of blue prism.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;set salt='bWBTNqWrvq6RbQnns5PpF+Kt7V1gVS97F6R5iZIxV6M=',&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;hash='9XkueyLzhbhRUMoKedsN3l7ChDmfS811IDymP8ZCEv8='where&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;userid=(select userid from BPAUser where username='admin')&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;and active=1;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This query will reset the blue prism password provided the username is "&lt;/SPAN&gt;&lt;STRONG&gt;admin&lt;/STRONG&gt;&lt;SPAN&gt;"​&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;SYED FAHEEM&lt;BR /&gt;RPA Lead&lt;BR /&gt;Arab Financial Services&lt;BR /&gt;Manama&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 07 Mar 2024 07:43:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Unable-to-reset-password/m-p/82623#M34016</guid>
      <dc:creator>faheemsd</dc:creator>
      <dc:date>2024-03-07T07:43:00Z</dc:date>
    </item>
  </channel>
</rss>

