Hey Guys, I'm having an issue with modifying MANAGER attribute in Active Directory. I know that manager property is type of DN (distinguishedName). I have no problem updating any other properties like title, department, company(it's type of String), but how do i update DN manager property? Thanx All...
Dim de As DirectoryEntry
If de.Properties.Contains("manager") Then
de.Properties("manager")(0) = "Jack Smith"
Else
de.Properties("manager").Add("Jack Smith")
End If