C#操作AD域的方法

检测是否链接到域

/// 
/// 域名或IP
/// 用户名
/// 密码
/// 域
/// 
public bool IsConnected(string domainName, string userName, string userPwd, out DirectoryEntry domain)
{
    domain = new DirectoryEntry();
    try
    {
        Console.WriteLine("链接域");
        domain.Path = string.Format("LDAP://{0}", domainName);
        domain.Username = userName;
        domain.Password = userPwd;
        domain.AuthenticationType = AuthenticationTypes.Secure;
        domain.RefreshCache();
        return true;
    }
    catch (Exception ex)
    {
        Console.WriteLine("链接域失败:失败原因" + ex.Message + ex.StackTrace);
        LogUtil.Info("[IsConnected方法]错误信息:" + ex.Message + ex.StackTrace);
        return false;
    }
}

判断该域中是否存在OU

/// 
/// 功能:域中是否存在组织单位
/// 
/// 
/// 
/// 组织名称
/// 
public bool IsExistOU(DirectoryEntry entry, out DirectoryEntry ou)
{
    ou = new DirectoryEntry();
 

你可能感兴趣的:(C#,c#)