当前位置:  开发笔记 > 编程语言 > 正文

使用C#,如何检查活动目录中是否禁用了计算机帐户?

如何解决《使用C#,如何检查活动目录中是否禁用了计算机帐户?》经验,为你挑选了3个好方法。

如何使用C#/ .NET检查Active Directory中是否禁用了计算机帐户



1> Leandro Lópe..:

试试这个:

class Program
{
    static void Main(string[] args)
    {
        const string ldap = "LDAP://your-ldap-server-here";

        using (DirectoryEntry conn = new DirectoryEntry(ldap))
        {
            using (DirectorySearcher searcher = new DirectorySearcher(conn))
            {
                searcher.Filter = "(|(samAccountName=userA)(samAccountName=userB))";
                searcher.PropertiesToLoad.Add("samAccountName");
                searcher.PropertiesToLoad.Add("userAccountControl");

                using (SearchResultCollection results = searcher.FindAll())
                {
                    foreach (SearchResult result in results)
                    {
                        int userAccountControl = Convert.ToInt32(result.Properties["userAccountControl"][0]);
                        string samAccountName = Convert.ToString(result.Properties["samAccountName"][0]);
                        bool disabled = ((userAccountControl & 2) > 0);

                        Console.WriteLine("{0} ({1:x}) :: {2}", samAccountName, userAccountControl, disabled);
                    }
                }
            }
        }

        Console.ReadLine();
    }
}

userAccountControl如果帐户被禁用,则第二位将为1.



2> Gregory A Be..:

试试这个条目:

http://www.codeproject.com/KB/system/everythingInAD.aspx#42

您将需要检查用户帐户控制标志.



3> 小智..:

如果您使用的是.NET 3.5,则可以使用新的System.DirectoryServices.AccountManagment命名空间方法来更轻松地访问Active Directory.UserPrincipal对象具有Enabled属性,可以为您提供所需内容.

在2008年1月的MSDN杂志中,对这些例程有了很好的概述.您可以在此处在线阅读文章:在.NET Framework 3.5中管理目录安全性主体

推荐阅读
sx-March23
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有