User Account is locked - not able to log in

Hello,

my user account is locked because I unintentionally entered a wrong password too many times, I'm currently not able to login into the tools.

Is there a workaround for this?

Thank you in advance

Parents Reply
  • connect to back end of the database.

    step1. get the UID_dialoguser

    SELECT [UID_DialogUser]
    ,[UserName]
    ,[BadPasswordAttempts]
    FROM [OneIMGDS].[dbo].[DialogUser]
    where [UserName]='viadmin'

    step 2. use the [UID_DialogUser] from above to set the BadPasswordAttempts to 0

    UPDATE [dbo].[DialogUser]
    SET [BadPasswordAttempts] = 0

    WHERE [UID_DialogUser]='QBM-A60F9E5189134AFFB6711DFCBC3F260E'
    GO

    try login... good luck

Children
No Data