If you forgot the admin password in the sitecore and want to reset to b then follow the below steps using sql server.
Open the new query window using the Core db and run the following script:
UPDATE
[aspnet_Membership]
SET
[Password]='qOvF8m8F2IcWMvfOBjJYHmfLABc=',
[PasswordSalt]='OM5gu45RQuJ76itRvkSPFw==',
[IsApproved] = '1',
[IsLockedOut] = '0'
WHERE
UserId IN (
SELECT UserId FROM dbo.aspnet_Users WHERE UserName = 'sitecore\Admin'
)
Thanks!
https://sitecorepeanuts.blogspot.com/2024/06/sitecore-reset-admin-password-to-b.html
ReplyDelete