gpt4 book ai didi

c# - UserPrincipal.FindByIdentity 抛出异常 - 服务器上没有这样的对象

转载 作者:太空狗 更新时间:2023-10-29 22:19:38 25 4
gpt4 key购买 nike

我遇到了一个简单的情况:我想使用我用来登录计算机的用户名和密码从 Active Directory 中检索我的帐户。

我的第一个问题是我在尝试调用 UserPrincipal.FindByIdentity 时收到来自服务器的推荐。我认为这有点奇怪,因为 PrincipalContext.ValidateCredentials 工作正常,但事实证明我的 DC 路径不正确。

我不确定如何正确制作我的 OU/DC 字符串。因此,我找到了 this SO post这有助于提供以下代码:

private static string GetDomainControllerString()
{
string pdc;
using (var context = new PrincipalContext(ContextType.Domain))
{
string server = context.ConnectedServer; // "pdc.examle.com"
string[] splitted = server.Split('.'); // { "pdc", "example", "com" }
IEnumerable<string> formatted = splitted.Select(s => String.Format("DC={0}", s));// { "DC=pdc", "DC=example", "DC=com" }
string joined = String.Join(",", formatted); // "DC=pdc,DC=example,DC=com"

// or just in one string

pdc = String.Join(",", context.ConnectedServer.Split('.').Select(s => String.Format("DC={0}", s)));
}

return pdc;
}

使用此代码正确生成我的 DC 字符串后,我的错误消息发生了变化。现在,我收到错误消息“服务器上没有这样的对象。”我怀疑问题出在我的 OU 或我如何调用 FindByIdentity。

这是我要检索的用户帐户的位置:

enter image description here

下面是我尝试访问所述用户的方式:

private static void Main(string[] args)
{
const string Domain = "SLO1.Foo.Bar.biz";
const string DefaultOU = "OU=Users,DC=SLO1,DC=Foo,DC=Bar,DC=biz";
const string username = @"sanderso";
const string password = "**********";

var principalContext = new PrincipalContext(ContextType.Domain, Domain, DefaultOU, ContextOptions.Negotiate, username, password);
bool areCredentialsValid = principalContext.ValidateCredentials(username, password, ContextOptions.Negotiate);

if (areCredentialsValid)
{
UserPrincipal userPrincipal = UserPrincipal.FindByIdentity(principalContext, username);
}
}

我也试过打电话:

UserPrincipal.FindByIdentity(principalContext, IdentityType.Name, "Sean Anderson");
UserPrincipal.FindByIdentity(principalContext, "Sean Anderson");

这些都同样不成功。

最佳答案

我认为不存在的对象是:

“OU=Users,DC=SLO1,DC=Foo,DC=Bar,DC=biz”

Users 是一个容器,而不是一个 OU。所以正确你需要:

“CN=Users,DC=SLO1,DC=Foo,DC=Bar,DC=biz”

关于c# - UserPrincipal.FindByIdentity 抛出异常 - 服务器上没有这样的对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14162099/

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