标题:[求助] 如何编辑active directory 里面节点的属性?
只看楼主
zhxwin
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2007-9-18
 问题点数:0 回复次数:3 
[求助] 如何编辑active directory 里面节点的属性?
我最近在写个小程序,用以管理active directory。但是在对其中节点属性编辑的时候遇到了麻烦。。。程序部分代码如下:(用来增加节点)

DirectoryEntry User = Container.Children.Add("User","CN=" + lmu_id); //create a new user

User.Properties["sAMAccountName"].Value= ntlogin; //set the properties of this user

User.Properties["userPrincipalName"].Value = login;

User.Properties["mail"].Value = email;

User.Properties["displayname"].Value = anzeigename;

User.Properties["givenName"].Value = vorname;

User.Properties["sn"].Value = nachname;

User.Properties["initials"].Value = geschlecht;

User.Properties["streetAddress"].Value = strasse;

User.Properties["telephoneNumber"].Value = telefon;

User.Properties["postalcode"].Value = plz;

User.Properties["l"].Value = wohnort;

User.Properties["description"].Value = studentenstatus;

User.Properties["physicalDeliveryOfficeName"].Value = matrikelnummer;

User.Properties["department"].Value = fach;

User.Properties["company"].Value = fakultät;

User.Properties["st"].Value = nationalität;

User.Properties["postOfficeBox"].Value = co;

User.Properties["profilePath"].Value = "\\ub15.public.ub.uni-muenchen.de";

User.Properties["scriptPath"].Value = "campus.cmd";

User.CommitChanges(); //save the changes of the properties

我在编译的时候,在最后一行User.CommitChanges 那里出现Exception(HRESULT: 0x8007200B)我在网上搜过,但是没有答案,请问谁知道原因的能不能指点下小弟,在这里先谢过了。

[此贴子已经被作者于2007-9-19 21:38:02编辑过]

搜索更多相关主题的帖子: directory 节点 active size 
2007-09-18 22:25
zhxwin
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2007-9-18
得分:0 

在CommitChanges之前的程序都能顺利的运行,但是一到CommitChanges那里就出错了。错误描述是:The attribute syntax specified to the directory service is invalid.

2007-09-19 21:42
chen85cong
Rank: 1
等 级:新手上路
帖 子:19
专家分:0
注 册:2007-9-20
得分:0 
调用语法错误,肯定指定的值出现了问题或调用方法不对!
2007-09-20 11:37
zhxwin
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2007-9-18
得分:0 

先谢谢楼上的关心,不过我在网上查过相关的语法,应该是没有错误的。而且我也试着用过如User.Properties["st"].Add( nationalität );但是出现的问题还是一样。这里有没有人也碰到过这种问题的?

2007-09-20 19:43



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-171047-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.506876 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved