Business Gateway - Admin Password Reset

SOLVED

Hi guys,

Can someone assist here please. I am trying the reset the Admin user login password as the default password set up is not working. I tried resetting the password and got the following:

I've tried deleting it in SQL and even tried to copy a default password into the SQL table dbo.tUser

This too does not work. 

How can I reset this password as trying to create another admin user still asks me to log into the Business Gateway with the old admin user password? 

Parents
  • 0

    Hi Keshen 

    Please try the following steps and advise me on the outcome:

    1. Open MS SQL Management Studio
    2. Access and open the ResolveWEB database that gets created and is used by Resolve WEB
    3. Run the following SQL script on it:

                Update TAdministrator

                Set password = ‘xxx’ where loginname = ‘Admin’         (XXX indicates the new password value)

            4. Note that the password field must have a value, and can’t be blank

    Kind regards

    Bennie 

Reply
  • 0

    Hi Keshen 

    Please try the following steps and advise me on the outcome:

    1. Open MS SQL Management Studio
    2. Access and open the ResolveWEB database that gets created and is used by Resolve WEB
    3. Run the following SQL script on it:

                Update TAdministrator

                Set password = ‘xxx’ where loginname = ‘Admin’         (XXX indicates the new password value)

            4. Note that the password field must have a value, and can’t be blank

    Kind regards

    Bennie 

Children