Tagged Questions
0
votes
1answer
2k views
“new DirectoryEntry(distinguishedName as string)” doesn't work when DN contains a “/”
I have the following code to convert a distinguishedName to a sAMAccountName:
Dim de As New DirectoryEntry("LDAP://" & stringDN)
Return CType(de.Properties("samaccountname")(0), String)
It ...