In my loop, I'm adding the property name and the value to a custom class.
C# Code:
foreach (PropertyValueCollection p in ChildObject.Properties) { ActiveDirectoryAttributeList ADAList = new ActiveDirectoryAttributeList(); ADAList.Attribute = p.PropertyName; ADAList.AttributeValue = p.Value.ToString(); ChildNode.Attributes.Add(ADAList); }
I'm able to pull some attributes, but not all of them. Below is an example of what my app pulls and what ADSI Edit pulls.
ADSI Edit:
My app:
Any ideas on why it's not pulling everything?





Reply With Quote