我正在尝试通过指定的url
查找所有计算机。
url
看起来像这样:
CN=Automatic_Shutdown_Exceptions,OU=GROUPS,DC=office
到目前为止,我已经设法找到了CN=Automatic_Shutdown_Exceptions
的目标容器。如何找到位于此容器中并同时遵循其他2
约束的计算机?
代码
var containerScope = "CN=Automatic_Shutdown_Exceptions";
var fullUrl = $"{containerScope}, OU = GROUPS, DC = office";
using (DirectorySearcher searcher=new DirectorySearcher(containerScope)) {
var elems = searcher.FindAll();
var target = elems.Cast<SearchResult>(); //returns the container
}
我已经看过这个CodeProject,但找不到。