gpt4 book ai didi

c# - 从 Active Directory 获取用户的管理员详细信息

转载 作者:太空宇宙 更新时间:2023-11-03 18:27:45 24 4
gpt4 key购买 nike

如何从与用户关联的事件目录管理器中获取管理器名称和电子邮件地址等详细信息?

我能够获取用户的所有详细信息:

ActiveDirectory.SearchUserinAD("ads", "sgupt257");

public static bool SearchUserinAD(string domain, string username)
{
using (var domainContext = new PrincipalContext(ContextType.Domain, domain))
{
using (var user = new UserPrincipal(domainContext))
{
user.SamAccountName = username;
using (var pS = new PrincipalSearcher())
{
pS.QueryFilter = user;
var results = pS.FindAll().Cast<UserPrincipal>();
{
foreach (var item in results)
{
File.WriteAllText("F:\\webapps\\CIS\\UserInfo.txt", item.DisplayName + item.Name + item.EmailAddress + item.EmployeeId + item.VoiceTelephoneNumber + item.Guid + item.Context.UserName + item.Sid);
}
if (results != null && results.Count() > 0)
{
return true;
}
}
}
}
}
return false;
}

谢谢。

最佳答案

我使用 DirectorySearcher 从 AD 获取数据。您可以通过类似的方式获得经理:

DirectoryEntry dirEntry = new DirectoryEntry("LDAP://DC=company,DC=com");
DirectorySearcher search = new DirectorySearcher(dirEntry);
search.PropertiesToLoad.Add("cn");
search.PropertiesToLoad.Add("displayName");
search.PropertiesToLoad.Add("manager");
search.PropertiesToLoad.Add("mail");
search.PropertiesToLoad.Add("sAMAccountName");
if (username.IndexOf('@') > -1)
{
// userprincipal username
search.Filter = "(userPrincipalName=" + username + ")";
}
else
{
// samaccountname username
String samaccount = username;
if (username.IndexOf(@"\") > -1)
{
samaccount = username.Substring(username.IndexOf(@"\") + 1);
}
search.Filter = "(sAMAccountName=" + samaccount + ")";
}
SearchResult result = search.FindOne();
result.Properties["manager"][0];

现在你知道谁是经理了,所以你可以查询有关经理的数据。

关于c# - 从 Active Directory 获取用户的管理员详细信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30070899/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com