12

我正在使用 .Net 库的 System.DirectoryServices.AccountManagement 部分连接到 ActiveDirectory。

在 GroupPrincipal 对象上调用 GetMembers() 并过滤结果后,我现在有了一组 UserPrincipal 对象

GroupPrincipal myGroup;  // population of this object omitted here 

foreach (UserPrincipal user in myGroup.GetMembers(false).OfType<UserPrincipal>())
{
    Console.WriteLine(user.SamAccountName);
}

上面的代码示例将打印出像“TestUser1”这样的用户名。我需要将这些与来自“DOMAIN\TestUser1”格式的另一个应用程序的列表进行比较。

如何从 UserPrincipal 对象中获取“DOMAIN”部分?

我不能只附加一个已知域名,因为涉及多个域,我需要区分 DOMAIN1\TestUser1 和 DOMAIN2\TestUser2。

4

5 回答 5

4

你有两个我能想到的选择。

  1. 解析,或采取一切,在,权利name@fully.qualified.domain.name;
  2. 使用System.DirectoryServices命名空间。

我不知道UserPrincipal,我也不知道GroupPrincipal。另一方面,我知道一种实现您想要的工作的方法。

[TestCase("LDAP://fully.qualified.domain.name", "TestUser1")] 
public void GetNetBiosName(string ldapUrl, string login)
    string netBiosName = null;
    string foundLogin = null;

    using (DirectoryEntry root = new DirectoryEntry(ldapUrl))
        Using (DirectorySearcher searcher = new DirectorySearcher(root) {
            searcher.SearchScope = SearchScope.Subtree;
            searcher.PropertiesToLoad.Add("sAMAccountName");
            searcher.Filter = string.Format("(&(objectClass=user)(sAMAccountName={0}))", login);

            SearchResult result = null;

            try {
                result = searcher.FindOne();

                if (result == null) 
                    if (string.Equals(login, result.GetDirectoryEntry().Properties("sAMAccountName").Value)) 
                        foundLogin = result.GetDirectoryEntry().Properties("sAMAccountName").Value
            } finally {
                searcher.Dispose();
                root.Dispose();
                if (result != null) result = null;
            }
        }

    if (!string.IsNullOrEmpty(foundLogin)) 
        using (DirectoryEntry root = new DirectoryEntry(ldapUrl.Insert(7, "CN=Partitions,CN=Configuration,DC=").Replace(".", ",DC=")) 
            Using DirectorySearcher searcher = new DirectorySearcher(root)
                searcher.Filter = "nETBIOSName=*";
                searcher.PropertiesToLoad.Add("cn");

                SearchResultCollection results = null;

                try {
                    results = searcher.FindAll();

                    if (results != null && results.Count > 0 && results[0] != null) {
                        ResultPropertyValueCollection values = results[0].Properties("cn");
                        netBiosName = rpvc[0].ToString();
                } finally {
                    searcher.Dispose();
                    root.Dispose();

                    if (results != null) {
                        results.Dispose();
                        results = null;
                    }
                }
            }

    Assert.AreEqual("INTRA\TESTUSER1", string.Concat(netBiosName, "\", foundLogin).ToUpperInvariant())
}

此 SO 问题中提供的其他相关信息或链接。
C# Active Directory:获取用户的域名?
如何查找域的 NetBIOS 名称

于 2010-11-26T14:35:18.350 回答
2

使用 ActiveDs COM 库,它具有内置的名称翻译,可以正常工作并且不做任何假设(就像这里的其他答案一样)。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using ActiveDs;

namespace Foo.Repository.AdUserProfile
{
    public class ADUserProfileValueTranslate
    {
        public static string ConvertUserPrincipalNameToNetBiosName(string userPrincipleName)
        {
            NameTranslate nameTranslate = new NameTranslate();
            nameTranslate.Set((int)ADS_NAME_TYPE_ENUM.ADS_NAME_TYPE_USER_PRINCIPAL_NAME, userPrincipleName);
            return nameTranslate.Get((int) ADS_NAME_TYPE_ENUM.ADS_NAME_TYPE_NT4);
        }
    }
}
于 2011-06-05T14:27:10.740 回答
0

您可以在 user.DistinguishedName 属性中查找可能的域。域 1 中的用户应包含字符串“DC=DOMAIN1”。它绝对不应该包含字符串“DC=DOMAIN2”。

于 2012-08-20T16:21:51.890 回答
0

正如对该问题的评论之一所述,我认为这是最近一段时间的一个很好的答案:

 user.Sid.Translate(typeof(System.Security.Principal.NTAccount)).ToString()
于 2017-07-27T01:24:00.133 回答
-1

您是否尝试过将完全限定的域名传递给这个其他应用程序?如果您这样做,大多数 Windows API 都不会抱怨fully_qualified_domain\USER

于 2010-11-26T14:15:30.973 回答