我正在编写一个删除 OU 下所有用户的 python 脚本。ou=people,cn=AdministrativeLdap,cn=Windchill_11.0,o=ptc。
我试图通过执行以下代码来删除条目,但它失败并出现错误“无法删除,因为它有从属条目”,“推荐人”:无,“类型”:“delResponse”
有没有办法可以单独删除条目?
太感谢了!
from ldap3 import Server, Connection, ALL
s = Server('<IP-ADDRESS>', get_info=ALL)
print(s)
c = Connection(s, user='xxxxxx', password='xxxxxxxxxx')
c.bind()
c.delete('ou=people,cn=AdministrativeLdap,cn=Windchill_11.0,o=ptc',force=True)
print(c.result)
c.unbind()