我正在尝试将域帐户添加到远程计算机的管理员组。我遇到的问题是,当我尝试实际连接到远程计算机 PrincipleContext 时,它给了我一条拒绝访问消息,但我以远程计算机本地管理员的身份连接。当我尝试访问它时,虽然我得到"Access is denied"。我知道登录名是正确的,因为如果我更改它,我会得到一个错误的密码/用户名错误。
管理员帐户是真正的管理员帐户,我可以使用该帐户登录到本地框,并且我具有完全的管理员访问权限,我可以根据需要将用户添加到管理员组,而不会出现任何问题。有什么想法会导致它在尝试远程执行此操作时报告访问被拒绝?
try
{
using (PrincipalContext pc = new PrincipalContext(ContextType.Machine, "SERVER_IP_HERE", null, ContextOptions.Negotiate, @"RemoteMachineNameHere\Administrator", "MyPassword"))
{
//Get an access denied error here trying to connect to the Context
GroupPrincipal group = GroupPrincipal.FindByIdentity(pc, "Administrators");
PrincipalContext dom1PC = new PrincipalContext(ContextType.Domain, "FQDNOFDomainHere");
var me = UserPrincipal.FindByIdentity(dom1PC, IdentityType.SamAccountName, @"MyUserName");
group.Members.Add(me);
group.Save();
}
}
catch (System.DirectoryServices.DirectoryServicesCOMException E)
{
Console.WriteLine(e);
}