狠狠色丁香婷婷综合尤物/久久精品综合一区二区三区/中国有色金属学报/国产日韩欧美在线观看 - 国产一区二区三区四区五区tv

LOGO OA教程 ERP教程 模切知識交流 PMS教程 CRM教程 開發(fā)文檔 其他文檔  
 
網(wǎng)站管理員

AD屬性對照表[AD域][DirectoryEntry]

admin
2021年6月26日 23:23 本文熱度 4018

AD屬性對照表

“常規(guī)”標(biāo)簽
 姓 Sn 
名 Givename 
英文縮寫 Initials 
顯示名稱 displayName 
描述 Description 
辦公室 physicalDeliveryOfficeName  
電話號碼 telephoneNumber 
電話號碼:其它 otherTelephone 多個以英文分號分隔 
電子郵件 Mail 
網(wǎng)頁 wWWHomePage 
網(wǎng)頁:其它 url 多個以英文分號分隔
“地址”標(biāo)簽
 國家/地區(qū) 如:中國CN,英國GB 
省/自治區(qū) St  
市/縣 
街道 streetAddress 
郵政信箱 postOfficeBox 
郵政編碼 postalCode 
“帳戶”標(biāo)簽
 用戶登錄名 userPrincipalName 形如:pccai1983@hotmail.com 
用戶登錄名(以前版本) sAMAccountName 形如:S1 
登錄時間 logonHours  
登錄到 userWorkstations 多個以英文逗號分隔 
用戶帳戶控制 userAccountControl (啟用:512,禁用:514, 密碼永不過期:66048) 
帳戶過期 accountExpires 
“配置文件”標(biāo)簽
配置文件路徑 profilePath 
登錄腳本 scriptPath 
主文件夾:本地路徑 homeDirectory 
連接 homeDrive 
到 homeDirectory 
“電話”標(biāo)簽
 家庭電話 homePhone (若是其它,在前面加other。) 
尋呼機(jī) Pager 如:otherhomePhone。 
移動電話 mobile 若多個以英文分號分隔。 
傳真 FacsimileTelephoneNumber  
IP電話 ipPhone 
注釋 Info 
“單位”標(biāo)簽
 職務(wù) Title 
部門 Department 
公司 Company 
“隸屬于”標(biāo)簽
 隸屬于  memberOf  用戶組的DN不需使用引號, 多個用分號分隔  
“撥入”標(biāo)簽 遠(yuǎn)程訪問權(quán)限(撥入或VPN) msNPAllowDialin 
允許訪問 值:TRUE 
拒絕訪問 值:FALSE 
回?fù)苓x項 msRADIUSServiceType 
由呼叫方設(shè)置或回?fù)艿?nbsp;值:4 
總是回?fù)艿?nbsp;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

電話相關(guān)屬性

顯示名稱

屬性名稱

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例子:

1.  //GetUserEntry

2.   

3.  public static DirectoryEntry GetUserEntryByAccount(DirectoryEntryentry, string account)

4.  {

5.      DirectorySearcher searcher =new DirectorySearcher(entry);

6.      searcher.Filter = "(&(objectClass=user)(SAMAccountName=" + account +"))";

7.      SearchResultresult = searcher.FindOne();

8.      entry.Close();

9.      if (result != null)

10.        {

11.            return result.GetDirectoryEntry();

12.        }

13.            return null;

14.        }

15.   }

 

1.  //Set Property

2.   

3.  public static void SetProperty(DirectoryEntry entry, string propertyName, string propertyValue)

4.  {

5.      if (entry.Properties.Contains(propertyName))

6.      {

7.          if (string.IsNullOrEmpty(propertyValue))

8.          {

9.               object o = entry.Properties[propertyName].Value;

10.                 entry.Properties[propertyName].Remove(o);

11.             }

12.             else

13.             {

14.                 entry.Properties[propertyName][0] = propertyValue;

15.             }

16.         }

17.         else

18.         {

19.             if (string.IsNullOrEmpty(propertyValue))

20.             {

21.                 return;

22.             }

23.             entry.Properties[propertyName].Add(propertyValue);

24.         }

25.   }


1.  //Get Property

2.   

3.  public static string GetProperty(DirectoryEntry entry, string propertyName)

4.  {

5.      if (entry.Properties.Contains(propertyName))

6.      {

7.          return entry.Properties[propertyName].Value.ToString();

8.      }

9.      else

10.        {

11.            return string.Empty;

12.        }

13.   }


該文章在 2021/6/26 23:23:13 編輯過
關(guān)鍵字查詢
相關(guān)文章
正在查詢...
點晴ERP是一款針對中小制造業(yè)的專業(yè)生產(chǎn)管理軟件系統(tǒng),系統(tǒng)成熟度和易用性得到了國內(nèi)大量中小企業(yè)的青睞。
點晴PMS碼頭管理系統(tǒng)主要針對港口碼頭集裝箱與散貨日常運作、調(diào)度、堆場、車隊、財務(wù)費用、相關(guān)報表等業(yè)務(wù)管理,結(jié)合碼頭的業(yè)務(wù)特點,圍繞調(diào)度、堆場作業(yè)而開發(fā)的。集技術(shù)的先進(jìn)性、管理的有效性于一體,是物流碼頭及其他港口類企業(yè)的高效ERP管理信息系統(tǒng)。
點晴WMS倉儲管理系統(tǒng)提供了貨物產(chǎn)品管理,銷售管理,采購管理,倉儲管理,倉庫管理,保質(zhì)期管理,貨位管理,庫位管理,生產(chǎn)管理,WMS管理系統(tǒng),標(biāo)簽打印,條形碼,二維碼管理,批號管理軟件。
點晴免費OA是一款軟件和通用服務(wù)都免費,不限功能、不限時間、不限用戶的免費OA協(xié)同辦公管理系統(tǒng)。
Copyright 2010-2025 ClickSun All Rights Reserved