I've written some code but not works it throws Exception "A..."> I've written some code but not works it throws Exception "A..." /> I've written some code but not works it throws Exception "A..." />
用户登录
用户注册

分享至

使用c#删除活动目录中的用户

  • 作者: 绰号小黄瓜
  • 来源: 51数据库
  • 2022-10-21

问题描述

我已经写了一些代码但不起作用,它抛出异常发生操作错误."代码--->

I've written some code but not works it throws Exception "An operations error occurred." code --->

DirectoryEntry dirEntry = new DirectoryEntry("LDAP path", "*****-username", "*****-password");
dirEntry.Properties["member"].Remove("username-delete");
dirEntry.CommitChanges();
dirEntry.Close();

给我一??些摆脱这些事情的想法..

give me some ideas to get out of this things..

推荐答案

如果您使用 .NET 3.5 及更高版本,您应该查看 System.DirectoryServices.AccountManagement (S.DS.AM) 命名空间.在此处阅读所有相关信息:

If you're on .NET 3.5 and up, you should check out the System.DirectoryServices.AccountManagement (S.DS.AM) namespace. Read all about it here:

  • 在 .NET Framework 3.5 中管理目录安全主体
  • System.DirectoryServices.AccountManagement 上的 MSDN 文档

基本上,您可以定义域上下文并轻松找到 AD 中的用户和/或组:

Basically, you can define a domain context and easily find users and/or groups in AD:

// set up domain context
PrincipalContext ctx = new PrincipalContext(ContextType.Domain);

// find the user you want to delete
UserPrincipal user = UserPrincipal.FindByIdentity(ctx, "SomeUserName");

if(user != null)
{
   user.Delete();
}

新的 S.DS.AM 使在 AD 中与用户和组一起玩变得非常容易!

The new S.DS.AM makes it really easy to play around with users and groups in AD!

软件
前端设计
程序设计
Java相关