分享
 
 
 

Active Directory如何用C#进行增加、删除、修改、查询用户与组织单位

王朝c#·作者佚名  2006-11-24
窄屏简体版  字體: |||超大  

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

接下来,我们来看看权限。你可以通过“网上邻居--整个网络--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;

}

}

-------------------------------------------

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

try

{

string RootDSE;

//System.DirectoryServices.DirectorySearcher DSESearcher= new System.DirectoryServices.DirectorySearcher();

//RootDSE=DSESearcher.SearchRoot.Path;

//RootDSE="LDAP://DC=Domain,DC=com";

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

System.DirectoryServices.DirectoryEntry myDE = new System.DirectoryServices.DirectoryEntry(strPath);

System.DirectoryServices.DirectoryEntries myEntries = myDE.Children;

// Create a new entry 'Sample' in the container.

string strname="CN="+ChineseName;

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

//MessageBox.Show(myDirectoryEntry.SchemaClassName.ToString());

myDirectoryEntry.Properties["userPrincipalName"].Value=Username;

myDirectoryEntry.Properties["name"].Value=ChineseName;

myDirectoryEntry.Properties["samAccountName"].Value=Username;

myDirectoryEntry.Properties["userAccountControl"].Value =66048; //590336;

myDirectoryEntry.CommitChanges();

}

----------------------------------------------

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

{

try

{

//String RootDSE;

//System.DirectoryServices.DirectorySearcher DSESearcher= new System.DirectoryServices.DirectorySearcher();

//RootDSE=DSESearcher.SearchRoot.Path;

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

System.DirectoryServices.DirectoryEntry myDE = new System.DirectoryServices.DirectoryEntry(strPath);

System.DirectoryServices.DirectoryEntries myEntries = myDE.Children;

string name="OU="+OUName;

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

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);

}

}

---------------------------------------------

private void ModifyUser()

{

try

{

string DomainName="Domain";

string FilterStr = "(sAMAccountname=karlluo)";

System.DirectoryServices.DirectorySearcher FindMe = new System.DirectoryServices.DirectorySearcher(DomainName);

FindMe.Filter = FilterStr;

System.DirectoryServices.SearchResult FindRes = FindMe.FindOne();

string tt=FindRes.Path;

System.DirectoryServices.DirectoryEntry MyUser = FindRes.GetDirectoryEntry();

string OUPath=MyUser.Parent.Path;

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

foreach(System.DirectoryServices.DirectoryEntry tempEntry in myds.Children)

{

if(tempEntry.SchemaClassName.ToString() == "user")

{

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);

}

}

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有