Question
How do I reset myQA admin password?
Answer
In order to reset myQA admin password, please follow the steps below:
Step 1
Run SQL Server Management Studio
Step 2
Find the myQA-MainDB and right click - New Query
Step 3
Copy below script:
UPDATE [SEC_User]
SET [HashedPassword]=N'BD9CE404927104BCAA84939876A83D77E125B705',
[Salt]=CONVERT(VARBINARY(MAX), '0xDFCB1DECF1F4AD44C02D7175FEBC25FDD033E22AE348AEB5', 1)
WHERE [Name]=N'admin'
Click Execute
After that the admin account of myQA is reset to "admin"