VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > 编程开发 > c#教程 >
  • C#教程之C#教程之C#读取AD域用户信息

本站最新发布   C#从入门到精通
试听地址  
https://www.xin3721.com/eschool/CSharpxin3721/

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
        private const string domainName = "本机IP地址或域名";
 
        private const string adAdmin = "管理员帐号";
 
        private const string password = "管理员密码";
 
        private const string ouName = "子节点名";//只是一个子节点名
 
private DataTable GetADUsers()
        {
            DataTable dt = new DataTable();
            dt.Columns.Add("sAMAccountName");//帐号
            dt.Columns.Add("displayName");//显示名称
            dt.Columns.Add("description");//描述
            dt.Columns.Add("telephoneNumber");//电话号码
            dt.Columns.Add("mail"); //邮箱地址
            dt.Columns.Add("wWWHomePage"); //网页
            dt.Columns.Add("c"); //国家
            dt.Columns.Add("st"); //省/自治区
            dt.Columns.Add("l"); //市/县
            dt.Columns.Add("streetAddress"); //街道
            dt.Columns.Add("company");//公司
            dt.Columns.Add("department");//部门
            dt.Columns.Add("title");//职务
            dt.Columns.Add("manager");//我的经理
            DirectoryEntry adRoot = new DirectoryEntry("LDAP://" + domainName, adAdmin, password, AuthenticationTypes.Secure);
 
            DirectoryEntry ou = adRoot.Children.Find("OU=" + ouName);
 
            DirectorySearcher mySearcher = new DirectorySearcher(ou);//想搜索出所有,此处可省参数
 
            mySearcher.Filter = ("(objectClass=user)"); //user表示用户,group表示组
 
            foreach (System.DirectoryServices.SearchResult resEnt in mySearcher.FindAll())
            {
                //if (user.Properties.Contains("mail"))
                //{
                //    dr["mail"] = user.Properties["mail"][0].ToString();
                //}
                //if (user.Parent.Name != string.Empty && user.Parent.Name.IndexOf('=') > -1)
                //{
                //    //获取用户所在的组织单位
                //    dr["OU"] = user.Parent.Name.Split('=')[1];
                //}
                DataRow dr = dt.NewRow();
                DirectoryEntry user = resEnt.GetDirectoryEntry();
                if (user.Properties.Contains("sAMAccountName"))
                {
                    dr["sAMAccountName"] = user.Properties["sAMAccountName"][0].ToString();
                }
                if (user.Properties.Contains("displayName"))
                {
                    dr["displayName"] = user.Properties["displayName"][0].ToString();
                }
                if (user.Properties.Contains("description"))
                {
                    dr["description"] = user.Properties["description"][0].ToString();
                }
                if (user.Properties.Contains("telephoneNumber"))
                {
                    dr["telephoneNumber"] = user.Properties["telephoneNumber"][0].ToString();
                }
                if (user.Properties.Contains("mail"))
                {
                    dr["mail"] = user.Properties["mail"][0].ToString();
                }
                if (user.Properties.Contains("wWWHomePage"))
                {
                    dr["wWWHomePage"] = user.Properties["wWWHomePage"][0].ToString();
                }
                if (user.Properties.Contains("c"))
                {
                    dr["c"] = user.Properties["c"][0].ToString();
                }
                if (user.Properties.Contains("st"))
                {
                    dr["st"] = user.Properties["st"][0].ToString();
                }
                if (user.Properties.Contains("l"))
                {
                    dr["l"] = user.Properties["l"][0].ToString();
                }
                if (user.Properties.Contains("streetAddress"))
                {
                    dr["streetAddress"] = user.Properties["streetAddress"][0].ToString();
                }
                if (user.Properties.Contains("company"))
                {
                    dr["company"] = user.Properties["company"][0].ToString();
                }
                if (user.Properties.Contains("department"))
                {
                    dr["department"] = user.Properties["department"][0].ToString();
                }
                if (user.Properties.Contains("title"))
                {
                    dr["title"] = user.Properties["title"][0].ToString();
                }
                if (user.Properties.Contains("manager"))
                {
                    dr["manager"] = user.Properties["manager"][0].ToString().Split(',')[0].Remove(0, 3);
                }
                dt.Rows.Add(dr);
 
            }
 
            return dt;
 
        }
相关教程