Active Directory 常用屬性
1.獲取DirectoryEntry
string str = string.Empty;
string strPath = @LDAP://testDomain.com.mo;
string ad = "testAD";
System.DirectoryServices.DirectorySearcher sea = new System.DirectoryServices.DirectorySearcher(strPath); sea.Filter = "(&(objectCategory=user)(sAMAccountName=" + ad + "))"; System.DirectoryServices.SearchResult res = sea.FindOne(); System.DirectoryServices.DirectoryEntry d = new System.DirectoryServices.DirectoryEntry(); d.Path = res.Path; foreach (string p in d.Properties.PropertyNames) { str += string.Format("{0}:{1}\r\n",p , d.Properties[p].Value.ToString()); } 2.基本資訊name,givenName.distinguishedName,displayName,mailNickname http://tech.ddvip.com/2013-01/1358156532188866.html 3.定位資訊 sAMAccountName:ad sAMAccountType:805306368 all user objects "(sAMAccountType=805306368)" "(&(objectCategory=person)(objectClass=user)(cn=Joe*))" "(&(objectCategory=group)(|(cn=Test*)(cn=Admin*)))" ADO Search Tips http://www.rlmueller.net/ADOSearchTips.htm
4.許可權碼userAccountControl啟用512,禁用514,密碼永不過期66048 enable:
d.Properties["userAccountControl"].Value = 512 & ~0x2;
user.CommitChanges();
disable:
d.Properties["userAccountControl"].Value = 512 | 0x2;
unlock:
d.Properties["LockOutTime"].Value = 0; reset password: d.Invoke("SetPassword", new object[] { password }); d.Properties["LockOutTime"].Value = 0; d.Properties["pwdLastSet"].Value = 0;
pwdLastSet
badPwdCount 使用者嘗試錯誤密碼的次數
badPasswordTime 使用者最後一次嘗試錯誤密碼的時間
lastLogon 使用者最後登陸時間
accountExpires 帳戶到期日期
Constant Hexadecimal value Decimal value
ADS_UF_NORMAL_ACCOUNT 0x200 512
ADS_UF_ACCOUNTDISABLE 0x0002 2
ADS_PASSWD_NOTREQD 0x0020 3
PASSWORD_EXPIRED 512 | 0x800000
http://blog.sina.com.cn/s/blog_6d6712230100ls0v.html
5.adsiedit.msc
http://www.cnblogs.com/dragonwlb/archive/2012/08/06/2625474.html
相關文章
- Oracle ASM Active Change DirectoryOracleASM
- UISearchBar常用屬性UI
- css常用屬性CSS
- WinForm常用屬性ORM
- .net常用屬性
- background常用屬性
- Active Directory 遷移工具 (ADMT)
- css常用文字屬性CSS
- CSS 常用文字屬性CSS
- CSS3常用屬性CSSS3
- Laravel 5.7 模型常用屬性Laravel模型
- UITableView 常用屬性及方法UIView
- css常用屬性彙總CSS
- swift4 常用屬性Swift
- html學習(常用屬性)HTML
- echarts常用屬性記錄Echarts
- RelativeLayout常用屬性介紹
- 字串的常用屬性和方法字串
- AppBarLayout,CoordinatorLayout常用屬性APP
- CSS1&2常用屬性CSS
- WebElement的常用屬性和方法Web
- Rancher 系列文章-Rancher 對接 Active Directory 實戰
- PingCastle 3.2.0.1 - Active Directory 安全檢測和評估GCAST
- CSS的常用屬性速查表CSS
- 數值常用的屬性和方法
- HTML 常用的標籤和屬性HTML
- 一些常用的模型屬性模型
- CSS中常用的屬性設定CSS
- JS常用屬性方法大全(一)JS
- ANDROID 控制元件常用屬性Android控制元件
- 常用的HTML標籤和屬性HTML
- 常用的瀏覽器私有屬性瀏覽器
- SlidingMenu 常用屬性介紹
- Windows常用屬性開啟指令 (轉)Windows
- ntbackup--Active Directory和Exchange郵件災難恢復
- windows 2000備份和恢復Active Directory(轉)Windows
- (八)Mybatis當中#{}常用屬性的用法MyBatis
- 前端常用的一些meta屬性前端