sitecore reset admin password to b

 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!

1 comment:

  1. https://sitecorepeanuts.blogspot.com/2024/06/sitecore-reset-admin-password-to-b.html

    ReplyDelete

Troubleshoot personalization on xm cloud

Here are the troubleshooting steps below that helped personalization to work. We checked the events analytics in the page builder but it was...