System.DirectoryServices.Protocol 从组中添加/删除用户
我想从 System.DirectoryServices.Protocol 命名空间中的组中添加删除用户。
我有这里提到的示例:
但不能查找有关如何使用 S.DS.P 在组中添加和删除用户的示例。
有谁知道此操作的任何样本吗?
谢谢,
卡尔-
I want to Add remove a user from a group in System.DirectoryServices.Protocol namespace.
I have the samples mentioned here :
But can't find an exampel fo how to add and remove a user from a group using S.DS.P.
Does anyone know of any samples for this operation?
Thanks,
Cal-
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您只想使用
DirectoryAttributeOperation.Add
在member
属性上发送ModifyRequest
。您应该传递的值是您要添加到组中的用户的 DNYou'd just want to send a
ModifyRequest
on themember
attribute with aDirectoryAttributeOperation.Add
. The value you should pass is the DN of the user you want to add to the group这是将对象添加到组的示例。
Here a example to add a object to a group.
对于那些关注的人,这是我如何使用 System.DirectoryServices.AccountManagement 实际解决问题的方法
,这是从组中删除的内容
Just for those who follow, here is how I actually solved the problem using System.DirectoryServices.AccountManagement
and here is the guts of the remove from group