如果您有权访问数据库,则可以使用SQL Management Studio运行以下查询来解锁您的sitecore管理员或任何其他用户帐户 :

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

相关文章:

  • 2021-08-31
  • 2021-12-26
  • 2021-09-04
  • 2021-09-02
  • 2022-12-23
  • 2021-11-03
  • 2021-08-06
  • 2021-04-19
猜你喜欢
  • 2022-12-23
  • 2021-08-01
  • 2022-02-19
  • 2021-10-05
  • 2021-11-26
  • 2021-08-29
  • 2021-11-14
相关资源
相似解决方案