Я хочу прочитать атрибут Parent-GUID
из ActiveDirectory
.
Я попробовал код ниже, чтобы прочитать все атрибуты объекта AD из ActiveDirectory.
Код
var dirEntry = new DirectoryEntry(directoryEntryPath);
var directorySearcher = new DirectorySearcher(dirEntry, filter)
{
CacheResults = false,
Tombstone = true,
};
var searchResult = directorySearcher.FindAll(); // get mutiple AD Objects
foreach (SearchResult search in searchResult)
{
foreach (DictionaryEntry prop in search.Properties) // here I get all attributes values But not able to find parent-GUID attribute
{
}
}
Используя приведенный выше код, я могу получить все свойства объекта AD, но не могу получить значение атрибута Parent-GUID .