C# ActiveDirectory 不断返回 false。为什么?

发布于 2025-01-06 11:17:13 字数 584 浏览 0 评论 0原文

我知道我的帐户用户名和密码。我可以登录域中的任何 PC。

Console.WriteLine("User Name: " + userName + " Password: " + tb.Text.ToString().Trim());
System.DirectoryServices.AccountManagement.PrincipalContext pc = new System.DirectoryServices.AccountManagement.PrincipalContext(ContextType.Domain, "DOMAIN.TLD");                

// validate the credentials 
bool validatedOnDomain = pc.ValidateCredentials(userName, tb.Text.ToString().Trim());
return validatedOnDomain;

这个方法一直返回 false。

我在这里做错了什么吗?我也知道我的密码是什么。任何帮助都会很棒!

TB->输入密码的文本框。我删除了所有空白并修剪了它(以防用户搞砸)

I know my Account Username and password. I am able to login to any PC on the domain.

Console.WriteLine("User Name: " + userName + " Password: " + tb.Text.ToString().Trim());
System.DirectoryServices.AccountManagement.PrincipalContext pc = new System.DirectoryServices.AccountManagement.PrincipalContext(ContextType.Domain, "DOMAIN.TLD");                

// validate the credentials 
bool validatedOnDomain = pc.ValidateCredentials(userName, tb.Text.ToString().Trim());
return validatedOnDomain;

This method keeps returning false.

Am I doing something wrong here? I also know what my password is. Any assitance would be great!

tb -> TextBox where the password is being inputted. I remove all white spaces and trimmed it (in case a user screws up)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

執念 2025-01-13 11:17:13

您可以尝试一下吗:

bool validatedOnDomain = pc.ValidateCredentials(userName, tb.Text.ToString().Trim(), ContextOptions.Negotiate); 

您只需指定用于绑定到服务器的选项即可。

Can you try this :

bool validatedOnDomain = pc.ValidateCredentials(userName, tb.Text.ToString().Trim(), ContextOptions.Negotiate); 

You just have to Specifie the options that are used for binding to the server.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文