这是我尝试使用的代码,但我并没有随时随地使用它:
public static string GetUserIdFromEmail(string emailAddress)
{
string displayName = string.Empty;
if (emailAddress.Contains("@sub.domain.edu") || emailAddress.Contains("@domain.edu"))
{
displayName = emailAddress.Split(new char[] { '@' })[0];
}
else
{
//no active directory account.
return string.Empty;
}
// set up domain context
using (PrincipalContext ctx = new PrincipalContext(ContextType.Domain))
{
// find user by display name
try
{
UserPrincipal user = UserPrincipal.FindByIdentity(ctx, displayName);
if (user != null)
{
return user.SamAccountName; // or UserPrincipleName
}
else
{
return string.Empty;
}
}
catch (Exception)
{
return "Error";
}
}
}
这些是我对当前系统的了解:
电子邮件将是独一无二的,并遵循某种命名惯例
命名约定是名字和姓氏的第一个字母(dstanley)。
Exchange上的一些旧帐户是first.last@email.com
我不知道我在做什么,但我知道自己想要什么。
我希望能够获取用户域电子邮件地址并在活动目录中找到他们的记录。上面的代码是在正确的轨道上还是我能做的更简单?
答案 0 :(得分:0)
要使用标准活动目录库访问用户电子邮件,您必须先拥有samaccount。这意味着此问题的解决方案要求您遍历每个samaccount并比较电子邮件地址,直到找到匹配项。
伪码
foreach(user in activedirectory)
{
if (user.email = targeted_email)
{
return matched samaccount
}
}
我不相信有更好的方法可以解决这个问题,因此它是一种资源密集型解决方案。