Working code below...
oRoot = New DirectoryEntry("LDAP://" & "servername" ldapserver" & _ "/" & "OU=UsersToChange,OU=Site OU=OUWithUsersToChange,OU=Site Users,DC=here,DC=now") oSearcher.PageSize = 20000 oSearcher.PropertiesToLoad.Add("textEncodedORAddress") oSearcher.PropertiesToLoad.Add("legacyExchangeDN") 'Dim proxyAddresses lNewList As New List(Of String= user.Properties.Item("proxyAddresses").Value 'proxyAddresses = proxyAddresses.Replace(aUsername) For Each sAddress As String In user.Properties("proxyAddresses") lNewList.Add(sAddress.Replace(curUsername, newUsernamenewUsername)) Dim sTextEncodedORAddress As String = user.Properties.Item("textEncodedORAddress").Value Dim sLegacyExchangeDN As String = user.Properties.Item("legacyExchangeDN").Value user.Properties.Item("sAMAccountName").Value = newUsername user.Properties("proxyAddresses").Value = lNewList.ToArray user.Properties.Item("textEncodedORAddress").Value = sTextEncodedORAddress.Replace(curUsername, newUsername) user.Properties.Item("legacyExchangeDN").Value = sLegacyExchangeDN.Replace(curUsername, newUsername) return Return True msgbox(ex.message) return Return False End TryThe code below results in the following error message...The directory service cannot perform the requested operation on the RDN attribute of an object. (Exception from HRESULT: 0x80072016)
Public Shared Function rename35(ByVal curUsername As String, ByVal newUsername As String) As Boolean Dim pc As New PrincipalContext(ContextType.Domain, "servername", "OU=UsersToChange,OU=Site,DC=here,DC=now") Dim up As UserPrincipal = UserPrincipal.FindByIdentity(pc, curUsername) up.Name = newUsername up.Save() Catch ex As Exception
