使用 Python ldap 模块解锁 Active Directory 上锁定的用户帐户
我最近使用 python ldap 模块在 AD 上实现了密码重置。
这涉及以这种方式传递修改后的属性:
add_pass = [(ldap.MOD_REPLACE, "unicodePwd", )]
这有效,因为 AD 上的密码存储在属性“unicodePwd”中。
现在我想解锁锁定的用户帐户,但我找不到必须更改才能实现相同目的的属性。
你们能告诉我我必须改变哪个属性吗?
I recently implemented password reset on AD using python ldap module.
This involved passing modified attributes in this manner:
add_pass = [(ldap.MOD_REPLACE, "unicodePwd", )]
This worked since the passwords on AD are stored in attribute "unicodePwd".
Now I want to unlock a locked user account but I cannot find the attribute that must be changed to achieve the same.
Could you guys please tell me which attribute I have to change?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
要解锁用户,您需要将
lockoutTime
属性设置为 0。To unlock a user, you need to set the
lockoutTime
attribute to 0.查看 userAccountControl 属性 < a href="http://msdn.microsoft.com/en-us/library/aa772300%28v=VS.85%29.aspx" rel="nofollow">ADS_UF_ACCOUNTDISABLE 标志允许您无法禁用已禁用的帐户。
----编辑------
@Brrian Desmond 是 true 要解锁用户,您需要将
lockoutTime
属性设置为 0。Have a look to userAccountControl attribute ADS_UF_ACCOUNTDISABLE flag which allow tu unable a disabled account.
----EDITED------
@Brrian Desmond is true to unlock a user, you need to set the
lockoutTime
attribute to 0.