本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/kxlf4600/archive/2009/05/21/4207563.aspx
“常规”标签
姓 Sn
名 Givename
英文缩写 Initials
显示名称 displayName
描述 Description
办公室 physicalDeliveryOfficeName
电话号码 telephoneNumber
电话号码:其它 otherTelephone 多个以英文分号分隔
电子邮件 Mail
网页 wWWHomePage
网页:其它 url 多个以英文分号分隔“地址”标签
国家/地区 C 如:中国CN,英国GB
省/自治区 St
市/县 L
街道 streetAddress
邮政信箱 postOfficeBox
邮政编码 postalCode
“帐户”标签
用户登录名 userPrincipalName 形如:pccai1983@hotmail.com
用户登录名(以前版本) sAMAccountName 形如:S1
登录时间 logonHours
登录到 userWorkstations 多个以英文逗号分隔
用户帐户控制 userAccountControl (启用:512,禁用:514, 密码永不过期:66048)
帐户过期 accountExpires
“配置文件”标签
配置文件路径 profilePath
登录脚本 scriptPath
主文件夹:本地路径 homeDirectory
连接 homeDrive
到 homeDirectory
“电话”标签
家庭电话 homePhone (若是其它,在前面加other。)
寻呼机 Pager 如:otherhomePhone。
移动电话 mobile 若多个以英文分号分隔。
传真 FacsimileTelephoneNumber
IP电话 ipPhone
注释 Info
“单位”标签
职务 Title
部门 Department
公司 Company
“隶属于”标签
隶属于 memberOf 用户组的DN不需使用引号, 多个用分号分隔
“拨入”标签 远程访问权限(拨入或VPN) msNPAllowDialin
允许访问 值:TRUE
拒绝访问 值:FALSE
回拨选项 msRADIUSServiceType
由呼叫方设置或回拨到 值:4
总是回拨到 msRADIUSCallbackNumber
名:GivenName
属性
显示名称
属性名称
First Name
givenName
Last Name
sn
Initials
initials
Description
description
Office
physicalDeliveryOfficeName
Telephone Number
telephoneNumber
Telephone: Other
otherTelephone
E-Mail
mail
Web Page
wwwHomePage
Web Page: Other
url
帐号属性:
显示名称
属性名称
UserLogon Name
userPrincipalName
User logon name (pre-Windows 2000)
sAMAccountname
Logon Hours
logonHours
Log On To
logonWorkstation
Account is locked out
userAccountControl
User must change password at next logon
pwdLastSet
User cannot change password
N/A
Other Account Options
userAccountControl
Account Expires
accountExpires
地址属性
显示名称
属性名称
Street
streetAddress
P.O.Box
postOfficeBox
City
l
State/Province
st
Zip/Postal Code
postalCode
Country/Region
c, co, and countryCode
成员属性
显示名称
属性名称
Member of
memberOf
Set Primary Group
primaryGroupID
组织属性
显示名称
属性名称
Title
title
Department
department
Company
company
Manager:Name
manager
Direct Reports
directReports
外型属性
显示名称
属性名称
Profile Path
profilePath
Logon Script
scriptPath
Home Folder: Local Path
homeDirectory
Home Folder: Connect
homeDrive
Home Folder: To
homeDirectory
电话相关属性
显示名称
属性名称
Home
telephoneNumber
Home: Other
otherTelephone
Pager
pager
Pager: Other
pagerOther
Mobile
mobile
Mobile: Other
otherMobile
Fax
facsimileTelephoneNumber
Fax: Other
otherFacsimileTelephoneNumber
IP phone
ipPhone
IP phone: Other
otherIpPhone
Notes
info
C#操作AD例子:
GetUserEntry
public static DirectoryEntry GetUserEntryByAccount(DirectoryEntry entry, string account)
{
DirectorySearcher searcher = new DirectorySearcher(entry);
searcher.Filter = "(&(objectClass=user)(SAMAccountName=" + account + "))";
SearchResult result = searcher.FindOne();
entry.Close();
if (result != null)
{
return result.GetDirectoryEntry();
}
return null;
}
Set Property
public static void SetProperty(DirectoryEntry entry, string propertyName, string propertyValue)
{
if (entry.Properties.Contains(propertyName))
{
if (string.IsNullOrEmpty(propertyValue))
{
object o = entry.Properties[propertyName].Value;
entry.Properties[propertyName].Remove(o);
}
else
{
entry.Properties[propertyName][0] = propertyValue;
}
}
else
{
if (string.IsNullOrEmpty(propertyValue))
{
return;
}
entry.Properties[propertyName].Add(propertyValue);
}
}
Get Property
public static string GetProperty(DirectoryEntry entry, string propertyName)
{
if (entry.Properties.Contains(propertyName))
{
return entry.Properties[propertyName].Value.ToString();
}
else
{
return string.Empty;
}
}
分享到:
相关推荐
AD 域属性对照表详解 在 Active Directory(AD)中,域属性对照表是指一个目录服务中存储的对象属性的集合。这些属性用于描述用户、组、计算机和其他对象的信息。今天,我们将对 AD 域属性对照表进行详细的解释。 ...
CSS与JS紧密配合,为我们的页面增添了很多别致的效果。...盒子标签和属性对照 CSS语法(不区分大小写) JavaScript语法(区分大小写) border border border-bottom borderBottom border-botto
软件介绍: AD Bulk Admin 1.1.0.15是一款企业AD管理员提供的AD帐户批量管理工具,能够提高管理员的工作效率,减轻工作负担。...内置日志查看工具、锁定/最后登陆时间查看器、属性中英文对照表。
5. ADSync操作对照表 - 表1清晰列出了AD和Domino之间可以执行的任务,对于用户和组的创建、重命名、删除、同步和密码管理都有明确的指导。 - 用户数据同步在AD中较为简单,而Domino中较复杂,组管理主要由AD负责。...
+ NC 中需要建立与 AD 域一致的用户编码,并标识域用户属性。 三、NC 同步微软 AD 服务解决方案 * 业务需求: + 将 HR 系统中的用户、人员和岗位信息同步到 AD 系统中。 + 将 HR 系统与 AD 中的公司信息建立...
- **Class类别**:在面向对象编程中,类是一个蓝图,定义了一组具有相同特征(属性)和行为(方法)的对象。 - **Type型别**:指数据类型,如整型(int)、浮点型(float)等。 - **Generalized泛化**:表示一般化,即一...
9. **即席 (Ad Hoc)**:指的是为特定目的临时创建或使用的,如即席税码或即席数据库查询。 10. **汇总余额 (Aggregate Balance)**:在特定时间范围内,每天结束时余额的总和,分为期初至今(PTD)、季初至今(QTD)和...
Activity Description (AD) (活动描述) **定义:** - **英文**: A short phrase or label for each schedule activity used in conjunction with an activity identifier to differentiate that project schedule ...
18. 临时评审(Ad Hoc Review):是一种非正式的评审,在这样的评审中,过程的执行者可随时请求其同事帮助发现所正在开发之构件中的问题。 19. 高级程序间通信(Advanced Program-to-Program Communication):主要...
### 软件工程专业词汇中英对照解析 在软件工程领域,专业术语的准确理解和应用至关重要。以下是对部分核心专业词汇的详细解释,旨在帮助读者深入理解软件工程中的关键概念。 #### Acceptance Testing - 可接受性...
10. **条件**(Condition):规则通常基于某些条件触发,如相邻对象的距离、对象的属性等。 11. **例外处理**(Exceptions):设计师可以通过例外规则(Exceptions)豁免特定对象或区域不受某些规则限制。 12. **...
这些模式通过OperatingMode属性选择,比如在定时方式下,可以通过CE和RST来暂停和重新开始计数。 isis元件库中的其他常用元件包括: 1. POT-HG:这是一种可调电位器,用于调整电路的电压或电流。 2. 7SEG-MPX8-CC-...
例如,ADG3241、ADG3231、ADG859、AD8317、AD8319等。这些型号后面通常跟随的数字和字母的组合可能是对特定产品版本的描述,或者是内部代码,用于区分不同的产品规格、封装类型、温度范围或其他参数。 文档中还提到...
#### 六、元件属性对话框中英文对照 在使用Proteus进行设计时,了解元件属性对话框中各项的含义也很重要: 1. **Libref元件名称**:元件在库中的名称。 2. **Footprint器件封装**:指元件在PCB上的实际物理尺寸和...
#### 元件属性对话框中英文对照 - **Libref**: 元件名称 (Element Name) - 指定元件在库中的名称。 - **Footprint**: 器件封装 (Device Footprint) - 定义元件在PCB上的物理尺寸和引脚位置。 - **Designator**: ...
17. **临时评审 (Ad Hoc Review)**: 非正式的评审过程,开发者可以请求同事帮助检查代码中的问题。 18. **高级程序间通信 (APPC)**: 在IBM环境下广泛使用的通信协议。 19. **聚合类 (Aggregate Class)**: 在聚合...