show/hide this revision's text 7 deleted 28 characters in body

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 Try

The 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
        
show/hide this revision's text 6 added 666 characters in body

I'm trying to rename a user programically and can't figure out the mailbox piece(proxyAddresses). Any help is appreciated...

Public Shared Function renameUser(ByVal curUsername As String, ByVal newUsername As String) As Boolean
    Dim emailSuffix As String = "@here.com"
    Dim userPrincipalSuffix As String = "@here.now"

    Dim user As New DirectoryEntry
    Dim oSearcher As DirectorySearcher = Nothing
    Dim oRoot As DirectoryEntry = Nothing
    Dim oResult As SearchResult
    Try
        oRoot = New DirectoryEntry("LDAP://" & "servername" & _
                  "/" & "OU=UsersToChange,OU=Site Users,DC=here,DC=now")
        oSearcher = New DirectorySearcher(oRoot)
        oSearcher.SearchScope = SearchScope.Subtree

        oSearcher.Filter = "(&(objectCategory=person)(sAMAccountName=" & curUsername & "))"
        oSearcher.PropertiesToLoad.Add("uid")
        oSearcher.PropertiesToLoad.Add("mail")
        oSearcher.PropertiesToLoad.Add("mailNickname")
        oSearcher.PropertiesToLoad.Add("userPrincipalName")
        oSearcher.PropertiesToLoad.Add("sAMAccountName")
        oSearcher.PropertiesToLoad.Add("proxyAddresses")
        oSearcher.PageSize = 20000

        oResult = oSearcher.FindOne
        user = oResult.GetDirectoryEntry

        'Dim proxyAddresses As String = user.Properties.Item("proxyAddresses").Value
        'proxyAddresses = proxyAddresses.Replace(aUsername, newUsername)

        user.Properties.Item("uid").Value = newUsername
        user.Properties.Item("mail").Value = newUsername & emailSuffix
        user.Properties.Item("mailNickname").Value = newUsername
        user.Properties.Item("userPrincipalName").Value = newUsername & userPrincipalSuffix
        user.Properties.Item("sAMAccountName").Value = newUsername

        user.CommitChanges()
        user.Rename("CN=" & newUsername)
        return True
    Catch ex As Exception
        msgbox(ex.message)
        return False
    Finally
        user.Dispose()
        oRoot.Dispose()
        oSearcher.Dispose()
        oResult = Nothing
    End Try  
End Function

The 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
    Try
        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
    Finally

    End Try
End Function
show/hide this revision's text 5 added 83 characters in body

I'm trying to rename a user programically and can't figure out the mailbox piece(proxyAddresses). Any help is appreciated...

Public Shared Function renameUser(ByVal curUsername As String, ByVal newUsername As String) As Boolean
    Dim emailSuffix As String = "@here.com"
    Dim userPrincipalSuffix As String = "@here.now"

    Dim user As New DirectoryEntry
    Dim oSearcher As DirectorySearcher = Nothing
    Dim oRoot As DirectoryEntry = Nothing
    Dim oResult As SearchResult
    Try
        oRoot = New DirectoryEntry("LDAP://" & "servername" & _
                  "/" & "OU=UsersToChange,OU=Site Users,DC=here,DC=now")
        oSearcher = New DirectorySearcher(oRoot)
        oSearcher.SearchScope = SearchScope.Subtree

        oSearcher.Filter = "(&(objectCategory=person)(sAMAccountName=" & curUsername & "))"
        oSearcher.PropertiesToLoad.Add("uid")
        oSearcher.PropertiesToLoad.Add("mail")
        oSearcher.PropertiesToLoad.Add("mailNickname")
        oSearcher.PropertiesToLoad.Add("userPrincipalName")
        oSearcher.PropertiesToLoad.Add("sAMAccountName")
        oSearcher.PropertiesToLoad.Add("proxyAddresses")
        oSearcher.PageSize = 20000

        oResult = oSearcher.FindOne
        user = oResult.GetDirectoryEntry

        'Dim proxyAddresses As String = user.Properties.Item("proxyAddresses").Value
        'proxyAddresses = proxyAddresses.Replace(aUsername, newUsername)

        user.Properties.Item("uid").Value = newUsername
        user.Properties.Item("mail").Value = newUsername & emailSuffix
        user.Properties.Item("mailNickname").Value = newUsername
        user.Properties.Item("userPrincipalName").Value = newUsername & userPrincipalSuffix
        user.Properties.Item("sAMAccountName").Value = newUsername

        user.CommitChanges()
        user.Rename("CN=" & newUsername)
        return True
    Catch ex As Exception
        msgbox(ex.message)
        return False
    Finally
        user.Dispose()
        oRoot.Dispose()
        oSearcher.Dispose()
        oResult = Nothing
    End Try  
End Function
show/hide this revision's text 4 edited tags
show/hide this revision's text 3 edited title
show/hide this revision's text 2 edited tags
show/hide this revision's text 1