以本地用户身份运行时搜索已知的安全主体

时间:2012-09-02 06:47:17

标签: c# active-directory

-

我的问题涉及从运行为的C#程序中搜索众所周知的安全主体 本地用户。我似乎无法使其发挥作用。


这是我的代码:

DirectoryEntry root = new DirectoryEntry("LDAP://cn=wellknown security principals,cn=configuration,dc=demoDomain,dc=loc", "domainUser", "HIDDEN");
DirectorySearcher searcher = new DirectorySearcher(root);

// Performing the search
SearchResultCollection results = searcher.FindAll();

作为域用户运行时,IT工作正常,但作为本地用户运行(并使用domainUser用户连接到域) 尝试FindAll()时出现此COM异常:“指定的域不存在或无法联系”-2147023541(8007054B)。

0 个答案:

没有答案