- Open website\sitecore\admin\unlock_admin.aspx page.
- Open aspx page in the text editor and replace the following line:
GetUser("sitecore\\admin").UnlockUser();
With:
var user = Membership.GetUser("sitecore\\admin");
user.UnlockUser();
user.ChangePassword(user.ResetPassword(), "b");
No comments:
Post a Comment