При поиске компьютеров в домене получаю не полный список. Для одних и тех же оушек один комп попадает в список другой нет. В чем может быть причина ?
DirectoryEntry rootDSE = new DirectoryEntry("LDAP://rootDSE");
string rootDirName = "LDAP://" + rootDSE.Properties["defaultNamingContext"][0];
DirectorySearcher searcher = new DirectorySearcher(new DirectoryEntry(rootDirName));
searcher.Filter = "(objectClass=computer)";
searcher.PropertiesToLoad.Add("Name");
searcher.PropertiesToLoad.Add("OperatingSystem");
searcher.PropertiesToLoad.Add("OperatingSystemVersion");
searcher.PropertiesToLoad.Add("OperatingSystemServicePack");
searcher.PropertiesToLoad.Add("ObjectSid");
SearchResultCollection resultCollection = searcher.FindAll();
foreach (SearchResult result in resultCollection)