找不到具有特殊字符的LDAP组

时间:2017-09-20 14:56:17

标签: vb.net ldap

使用accountmanagement我可以使用以下内容检查组是否存在..

Dim groupName = "ALL HB/LKM Engineering"
Using context = New PrincipalContext(ContextType.Domain, "mydomain.com")
   Dim groupPrincipal__1 = GroupPrincipal.FindByIdentity(context, 
   IdentityType.SamAccountName, groupName)
   Dim GroupExists As Boolean = (groupPrincipal__1 IsNot Nothing)
   MessageBox.Show(GroupExists)
End Using

我知道这个小组存在,但它告诉我它没有。这段代码也适用于其他所有测试,但是使用/的组,它会返回false ...即使我知道它存在。

这是一个错误,还是我做错了什么?更改组名称不是当前选项。

0 个答案:

没有答案