AD如何用C#进行增删改、查询用户与OU

AD如何用C#进行增删改、查询用户与OU

正文:

首先我们来了解一下什么是Active Directory。不用我描述,看以下网址,或在.net自带帮助文档里根据Active Directory关键字一搜,就什么都明白了。 
http://developer.ccidnet.com/pub/article/c322_a28703_p2.html

接下来,我们来看看权限。你可以通过“网上邻居--整个网络--Directory--demain(你的域名)”你就可以看到所有关于域下的信息,粗一看就知道是怎么回事了。 
需要告诉大家的:所有组织单位下的用户都在Users(容器)--Demain Users(组)中 
用代码进行访问时,如果你是域管理员用户,则可以做任何操作,否则,只能查询用户属性。

private void SearchUser() 

string domainName = "Domain"; 
string groupName = "Domain Users"; 
string dirmemName=""; 
//在Domain Users域用户里取得每个用户名 
System.DirectoryServices.DirectoryEntry group = new System.DirectoryServices.DirectoryEntry("WinNT://" + domainName + "/" + groupName + ",group"); 
foreach(Object member in (IEnumerable)group.Invoke("Members")) 

//根据很个用户生成如:"LDAP://OU=套装软体课,OU=系统开发部,OU=资讯服务处,OU=营运支援中心,OU=XX公司,DC=Domain,DC=com,DC=cn" 
System.DirectoryServices.DirectoryEntry dirmem = new System.DirectoryServices.DirectoryEntry(member); 
dirmemName=dirmem.Name; 
string DomainName="Domain"; 
string FilterStr = "(sAMAccountname="+dirmemName+")"; 
System.DirectoryServices.DirectorySearcher FindMe = new System.DirectoryServices.DirectorySearcher(DomainName); 
FindMe.Filter = FilterStr; 
System.DirectoryServices.SearchResult FindRes = FindMe.FindOne(); 
System.DirectoryServices.DirectoryEntry MyUser = FindRes.GetDirectoryEntry(); 
string OUPath=MyUser.Parent.Path; 
//找到该用户所在的LDAP:后,由域管理员登录,并取得该用户的所在属性。 
string strFieldsValue="",strFields=""; 
System.DirectoryServices.DirectoryEntry myds=new System.DirectoryServices.DirectoryEntry(OUPath,"域管理员名","域管理员密码"); 
foreach(System.DirectoryServices.DirectoryEntry tempEntry in myds.Children) 

if(tempEntry.SchemaClassName.ToString() == "user" && tempEntry.Properties["sAMAccountName"].Value.ToString().ToLower()==dirmemName) 

foreach (string propertyName in tempEntry.Properties.PropertyNames ) 

string oneNode = propertyName + ": " + 
entry.Properties[propertyName][0].ToString(); 
this.Textbox1.Text=oneNode; 

}



<![cdata[

<br>public void AddUser(string strPath,string Username,string

ChineseName)//strPath 增加用户至哪个组织单位如"LDAP://OU=XX公司,DC=Domain,DC=com"帐号、中文名{

<BR>try <BR>{ <BR>string RootDSE;

<BR>//System.DirectoryServices.DirectorySearcher DSESearcher= new

System.DirectoryServices.DirectorySearcher();

<BR>//RootDSE=DSESearcher.SearchRoot.Path;

<BR>//RootDSE="LDAP://DC=Domain,DC=com";

<BR>//RootDSE=RootDSE.Insert(7,"CN=Users,");

<BR>System.DirectoryServices.DirectoryEntry myDE = new

System.DirectoryServices.DirectoryEntry(strPath);

<BR>System.DirectoryServices.DirectoryEntries myEntries = myDE.Children; <BR>//

Create a new entry ‘Sample‘ in the container. <BR>string

strname="CN="+ChineseName; <BR>System.DirectoryServices.DirectoryEntry

myDirectoryEntry = myEntries.Add(strname, "user");

<BR><BR>//MessageBox.Show(myDirectoryEntry.SchemaClassName.ToString());

<BR>myDirectoryEntry.Properties["userPrincipalName"].Value=Username;

myDirectoryEntry.Properties["name"].Value=ChineseName; 
myDirectoryEntry.Properties["samAccountName"].Value=Username; 
myDirectoryEntry.Properties["userAccountControl"].Value =66048; //590336; 
myDirectoryEntry.CommitChanges(); 
}



<![cdata[

<br>private void addOU(string strPath,string OUName)//增加组织到strPath组织单位下,组织名称

<BR>{ <BR>try <BR>{ <BR>//String RootDSE;

<BR>//System.DirectoryServices.DirectorySearcher DSESearcher= new

System.DirectoryServices.DirectorySearcher();

<BR>//RootDSE=DSESearcher.SearchRoot.Path;

<BR>//RootDSE="LDAP://OU=百意时尚广场,DC=Domain,DC=com";

<BR><BR>System.DirectoryServices.DirectoryEntry myDE = new

System.DirectoryServices.DirectoryEntry(strPath);

<BR>System.DirectoryServices.DirectoryEntries myEntries = myDE.Children;

<BR>string name="OU="+OUName; <BR>System.DirectoryServices.DirectoryEntry

myDirectoryEntry = myEntries.Add(name,"organizationalUnit");

<BR><BR>myDirectoryEntry.Properties["name"].Value=OUName;

myDirectoryEntry.Properties["instanceType"].Value=4; 
myDirectoryEntry.Properties["distinguishedName"].Value="OU="+OUName+",DC=Domain,DC=COM)"; 
myDirectoryEntry.Properties["objectCategory"].Value="CN=Organizational-Unit,CN=Schema,CN=Configuration,DC=sedep,DC=COM"; 
myDirectoryEntry.Properties["ou"].Value=OUName; 
myDirectoryEntry.Properties["postalCode"].Value="777";

myDirectoryEntry.CommitChanges(); 
//UserMoveto("LDAP://OU="+OUName+",DC=sedep,DC=com",strPath); 

catch(Exception RaiseErr) 

MessageBox.Show (RaiseErr.Message); 

}


<![cdata[

<br>private void ModifyUser() <BR>{ <BR>try <BR>{ <BR>string

DomainName="Domain"; <BR>string FilterStr = "(sAMAccountname=karlluo)";

<BR>System.DirectoryServices.DirectorySearcher FindMe = new

System.DirectoryServices.DirectorySearcher(DomainName); <BR>FindMe.Filter =

FilterStr; <BR>System.DirectoryServices.SearchResult FindRes = FindMe.FindOne();

<BR>string tt=FindRes.Path; <BR>System.DirectoryServices.DirectoryEntry MyUser =

FindRes.GetDirectoryEntry(); <BR>string OUPath=MyUser.Parent.Path;

<BR><BR>DirectoryEntry myds=new DirectoryEntry(OUPath,"域管理员名","域管理员密码");

<BR><BR>foreach(System.DirectoryServices.DirectoryEntry tempEntry in

myds.Children) <BR>{ <BR>if(tempEntry.SchemaClassName.ToString() == "user")

<BR>{

<BR>if(tempEntry.Properties["sAMAccountName"].Value.ToString().ToLower()=="karlluo")


tempEntry.UsePropertyCache=true; 
tempEntry.Properties["st"].Value="yyyyyyyyyyyyyyyy"; 
//newEntry.Properties["userPrincipalName"].Value="userID"; 
tempEntry.CommitChanges(); 




catch(Exception RaiseErr) 

MessageBox.Show (RaiseErr.Message); 
}

}

类别: Active Directory

时间: 2024-10-16 08:07:35

AD如何用C#进行增删改、查询用户与OU的相关文章

3、MySQL增删改查用户权授系统函数

<--目录--> 1)数据库分类 2)系统函数 3)创建数据库 4)选择数据库 5)建表语句 6)插入数据 7)删用户删数据删库表 8)修改表数据 9)查询数据 10)用户授权 11)show查看当前所有库表.建库表语句.用户权限 12)desc查看表结构 [数据库分类] 在MySQL软件中,数据库可以分为系统数据库和用户数据库两大类 1.系统数据库 系统数据库是指装完MySQL服务器后,会附带的一些数据,如下图所示 mysql> show databases; +-----------

Yii数据库操作增删改查-[增加\查询\更新\删除 AR模式]

在Yii的开发中常常需要去使用Yii的增删改查方法,这些方法又可以多次变化和组合,带来全方位的实现对数据库的处理,下面对这些方法做一些简单的整理和梳理,有遗漏或是BUG,敬请指出.灰常感谢!!! 一.查询数据集合 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 //1.该方法是根据一个条件查询一个集合 $admin=Admin::model()->findAll($condition,$params); $admin=Admin::model()->f

夺命雷公狗---Thinkphp----12之文章的增删改查(图片上传和关联查询)

我们由于表分析的不够完善,所以我们来加多一个tid的字段,到时候主要目的是为了更好的遍历出文章是属于那个分类下的,表如下所示: 那么下一步我们就开始创建一个ArticleController.class.php的控制器,用来管理文章的增删改查操作,所以我们开始第一步来实现文章的添加,我们先来实现他的增加功能: public function add(){ if(IS_POST){ $data['title'] = I('title'); $data['tid'] = I('tid'); $dat

PHP-----练习-------租房子-----增删改查,多条件查询

练习-------租房子-----增删改查,多条件 一 .题目要求: 二 .做法: [1]建立数据库 [2]封装类文件------DBDA.class.php 1 <?php 2 class DBDA 3 { 4 public $fuwuqi="localhost"; //服务器地址 5 public $yonghuming="root";//用户名 6 public $mima="";//密码 7 8 public $dbconnect;

数据库基本查询语句(SQL常用增删改查语句 简单复习 mark)

SQL常用增删改查语句 1增 1.1[插入单行]insert [into] <表名> (列名) values (列值)例:insert into Strdents (姓名,性别,出生日期) values ('开心朋朋','男','1980/6/15') 1.2[将现有表数据添加到一个已有表]insert into <已有的新表> (列名) select <原表列名> from <原表名>例:insert into tongxunlu ('姓名','地址','

jdbc增删改查,利用反射查询

整理自http://blog.csdn.net/yanzi1225627/article/details/26950615,谢谢作者! 本文我的爱点是: 1.利用反射实现数据库数据查询 2.编写一个sql语句,其中的参数用?来代替,然后将参数写到List里 例如使用例子: 1 String sql = "delete from userinfo where username = ?"; 2 List<Object> params = new ArrayList<Obj

OracleHelper(对增删改查分页查询操作进行了面向对象的封装,对批量增删改操作的事务封装)

公司的一个新项目使用ASP.NET MVC开发,经理让我写个OracleHelper,我从网上找了一个比较全的OracleHelper类,缺点是查询的时候返回DataSet,数据增删改要写很多代码(当然,可以用代码生成器,不过配套的代码生成器暂时没有):又从网上找了一个封装了泛型方法的OracleHelper类,整合到一起,但貌似数据增删改查依然不方便:于是花了两天时间,在原有基础上对增删改查分页查询操作进行了面向对象的封装,并且对批量增删改操作进行事务封装,写事务代码更方便. 原理: 1.利用

VS连接Access数据库--连接字符串及执行查询语句的方法(增删改查,用户名查重,根据用户获取密码查询)

ACCESS数据的连接及语句执行操作,不难,久不用会生疏,每次都要找资料,干脆自己整理下,记录下来,需要的时候,直接查看,提高效率.也供初学者参考 1.连接字符串 public static string strConn = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + Directory.GetCurrentDirectory() + "\\**.mdb;"; 2.数据语句执行(增删差改,用户名查重,根据用户

ios CoreData框架的使用,对上下文数据的增删改查,表与表之间的关联,1对多,1对1,谓词查询,多表连接

这里是只是代码,因为博客插入图片效果不是很好,我自己写的总结比较详细,有兴趣的朋友可以在评论里留下邮箱,我收到后会发给大家. 转载注明出处,重视原创者的劳动成果,谢谢! - (void)viewDidLoad { [super viewDidLoad]; [self _creatTable];//插入数据 //    [self _query];// 查询数据 // KVC很霸道,即使readonly通过kvc也可赋值,kvo精华 //    Book * book = [[Book alloc