Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法用 python ldap3 从 AD 包中删除对象?就像是
conn.delete("(CN='auto*'),CN=Users,DC=mycompany,DC=com")
没有找到
蒂亚!
你不能。LDAP 协议不允许这样的操作。您必须使用 conn.delete() 来删除每个用户。