Sunday, September 11, 2016

How to reset Admin password to default password b in Sitecore

It might happen we forgot or lost admin password in Sitecore. Then there is a simple way to reset the admin password to "b"

Steps:
1. Navigate to Core database.
2. Run the below query in core database and it will update to default password to b.

UPDATE dbo.aspnet_Membership
SET
    Password='qOvF8m8F2IcWMvfOBjJYHmfLABc=',
    PasswordSalt='OM5gu45RQuJ76itRvkSPFw=='
WHERE  UserId = (SELECT UserId FROM dbo.aspnet_Users WHERE UserName = 'sitecore\Admin')


No comments:

Post a Comment