forget admin password

Former Member
Former Member
Hello Anyone can tell me how to reset admin password or is there any forget password option available. I am unable to log in aras. Aras innovator not taking my current password which I have used to log in previously. Thank you in advance.
Parents
  • Hello Sanu, You can reset the password directly through SQL if you know hash value of the password. For example the query below will reset the password of the 'admin' user to 'innovator'. update [InnovatorSolutions].[innovator].[user] set password = '607920b64fe136f9ab2389e371852af2' where [login_name] = 'admin' Note that you should replace InnovatorSolutions with the name of your database. Chris
    Christopher Gillis Aras Labs Software Engineer  
Reply
  • Hello Sanu, You can reset the password directly through SQL if you know hash value of the password. For example the query below will reset the password of the 'admin' user to 'innovator'. update [InnovatorSolutions].[innovator].[user] set password = '607920b64fe136f9ab2389e371852af2' where [login_name] = 'admin' Note that you should replace InnovatorSolutions with the name of your database. Chris
    Christopher Gillis Aras Labs Software Engineer  
Children
No Data