gpt4 book ai didi

c# - 加入域时本地用户帐户的 Principal.IsMemberOf 异常

转载 作者:行者123 更新时间:2023-11-30 12:20:07 26 4
gpt4 key购买 nike

我正在尝试确定给定的本地用户帐户是否在本地管理员组中。在系统加入域之前一切正常。当加入域时抛出异常,提示未找到网络路径,但仅在查找本地非管理员帐户时才会抛出异常;如果测试帐户是本地管理员,则该方法返回正常。

这是代码示例:

string accountName = @"localAccountName"; 
string groupName = @"Administrators";

using (PrincipalContext principalContext = new PrincipalContext(ContextType.Machine))
{
using (UserPrincipal accountPrinciple = new UserPrincipal(principalContext))
{
accountPrinciple.SamAccountName = accountName;
using (PrincipalSearcher accountSearcher = new PrincipalSearcher(accountPrinciple))
{
UserPrincipal account = (UserPrincipal)accountSearcher.FindOne();
if(account != null)
{
using (GroupPrincipal groupPrinciple = new GroupPrincipal(principalContext))
{
groupPrinciple.SamAccountName = groupName;
using (PrincipalSearcher groupSearcher = new PrincipalSearcher(groupPrinciple))
{
GroupPrincipal group = (GroupPrincipal)groupSearcher.FindOne();
if (account.IsMemberOf(group))
{
Console.WriteLine(@"{0} is part of the administrators group", accountName);
}
else
{
Console.WriteLine(@"{0} is not part of the administrators group", accountName);
}
}
}
}
else
{
Console.WriteLine(@"{0} is not found", accountName);
}
}
}
}

结果栈是:

Unhandled Exception: System.Runtime.InteropServices.COMException: The network path was not found.

at System.DirectoryServices.DirectoryEntry.Bind(Boolean throwIfFail)
at System.DirectoryServices.DirectoryEntry.Bind()
at System.DirectoryServices.DirectoryEntry.get_AdsObject()
at System.DirectoryServices.PropertyValueCollection.PopulateList()
at System.DirectoryServices.PropertyValueCollection..ctor(DirectoryEntry entry, String propertyName)
at System.DirectoryServices.PropertyCollection.get_Item(String propertyName)
at System.DirectoryServices.AccountManagement.SAMStoreCtx.ResolveCrossStoreRefToPrincipal(Object o)
at System.DirectoryServices.AccountManagement.SAMMembersSet.MoveNextForeign()
at System.DirectoryServices.AccountManagement.SAMMembersSet.MoveNext()
at System.DirectoryServices.AccountManagement.PrincipalCollectionEnumerator.MoveNext()
at System.DirectoryServices.AccountManagement.PrincipalCollection.ContainsEnumTest(Principal principal)
at AdminGroupTest.Program.Main(String[] args)

我已经指定了机器上下文并尝试使用重载来进一步指定本地机器。我可以理解这是否是 AD 的权限问题,除了简单地更改目标帐户会改变行为而不管执行帐户如何,并且查询本地管理员帐户(不是默认管理员)有效。 PrincipleSearcher 找到了该帐户,但无法测试成员身份……一定是我忽略了什么。

最佳答案

默认情况下,将计算机加入域时,“Domain Admins”组将添加到本地“Administrators”组。

当您查询 Principal.IsMemberOf(GroupPrincipal) 时,将枚举 GroupPrincipal.Members。

首先,检查所有顶级组成员。这包括本地用户,这就是在检查本地管理员用户时调用成功的原因。

如果未找到匹配项,则代码会枚举属于相关组的其他组。在这种情况下,域管理员。

为了枚举域管理员的成员,需要进行事件目录查找,但您的执行用户没有执行域查询的权限。

无需枚举组来查找成员,您可以简单地向 UserPrincipal 询问其组:

string accountName = @"localAccountName";
string groupName = @"Administrators";

using (PrincipalContext principalContext = new PrincipalContext(ContextType.Machine))
{
using (UserPrincipal accountPrinciple = new UserPrincipal(principalContext))
{
accountPrinciple.SamAccountName = accountName;
using (PrincipalSearcher accountSearcher = new PrincipalSearcher(accountPrinciple))
{
UserPrincipal account = (UserPrincipal)accountSearcher.FindOne();
if (account != null)
{
foreach (var group in account.GetGroups())
{
if (group.SamAccountName == groupName && group.ContextType == ContextType.Machine)
{
Console.WriteLine(@"{0} is part of the administrators group", accountName);
return;
}
}

Console.WriteLine(@"{0} is not part of the administrators group", accountName);
}
else
{
Console.WriteLine(@"{0} is not found", accountName);
}
}
}
}

关于c# - 加入域时本地用户帐户的 Principal.IsMemberOf 异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53328991/

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