Unlock Sitecore Admin user account

If you have access to database you can run the below query to unlock your sitecore admin or any other user account using SQL Management Studio –

UPDATE aspnet_Membership
SET
IsLockedOut = 0,
FailedPasswordAttemptCount = 0
WHERE
UserId IN (SELECT UserId FROM aspnet_Users WHERE UserName = ‘sitecore\Admin’)

2 thoughts on “Unlock Sitecore Admin user account

Leave a comment