如果您使用的计算机不在域中,我如何使用C#在活动目录中验证用户名和密码?

最佳答案

我已经尝试过了我现在使用的计算机不在域中。

try
{
    DirectoryContext context = new DirectoryContext(DirectoryContextType.DirectoryServer,   "IP", "Username", "Password");
    DirectoryEntry deDoc = Domain.GetDomain(context).GetDirectoryEntry();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}

关于c# - C#Active Directory身份验证用户(如果计算机不在域中),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17564988/

10-12 05:07