vb.net active directory question - rename user account and mailbox - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T21:42:09Zhttp://stackoverflow.com/feeds/question/1059936http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1059936/vb-net-active-directory-question-rename-user-account-and-mailbox1vb.net active directory question - rename user account and mailboxnetNewb2009-06-29T19:08:24Z2009-06-30T13:07:18Z
<p>I'm trying to rename a user programically and can't figure out the mailbox piece(proxyAddresses). Any help is appreciated...</p>
<p>Working code below...</p>
<pre><code>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://" & "ldapserver" & _
"/" & "OU=OUWithUsersToChange,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.PropertiesToLoad.Add("textEncodedORAddress")
oSearcher.PropertiesToLoad.Add("legacyExchangeDN")
oResult = oSearcher.FindOne
user = oResult.GetDirectoryEntry
Dim lNewList As New List(Of String)
For Each sAddress As String In user.Properties("proxyAddresses")
lNewList.Add(sAddress.Replace(curUsername, newUsername))
Next
Dim sTextEncodedORAddress As String = user.Properties.Item("textEncodedORAddress").Value
Dim sLegacyExchangeDN As String = user.Properties.Item("legacyExchangeDN").Value
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.Properties("proxyAddresses").Value = lNewList.ToArray
user.Properties.Item("textEncodedORAddress").Value = sTextEncodedORAddress.Replace(curUsername, newUsername)
user.Properties.Item("legacyExchangeDN").Value = sLegacyExchangeDN.Replace(curUsername, newUsername)
user.CommitChanges()
user.Rename("CN=" & newUsername)
Return True
Catch ex As Exception
Return False
Finally
user.Dispose()
oRoot.Dispose()
oSearcher.Dispose()
oResult = Nothing
End Try
End Function
</code></pre>
http://stackoverflow.com/questions/1059936/vb-net-active-directory-question-rename-user-account-and-mailbox/1060233#10602331Answer by HBoss for vb.net active directory question - rename user account and mailboxHBoss2009-06-29T20:08:32Z2009-06-29T20:14:04Z<p>If I remember correctly, proxyAddresses is actually an array, not a single value. It is also prefixed with information about the kind of address it is...</p>
<p><strong>Warning: Ugly code ahead!</strong></p>
<p>This is some code that I had used before so change the primary e-mail address for user accounts and keep previous addresses (as in switching primary domain names). This might help you make your changes</p>
<pre><code>Dim lNewList As New List(Of String)
sPrimaryAddress = sPrimaryAddress.Split("@")(0) & "@" & "example.com"
lNewList.Add("SMTP:" & sPrimaryAddress)
For Each sAddr As String In lPrevList
lNewList.Add(sAddr) 'which will be a list of values like "smtp:someone@domain.com"'
Next
Dim oUser As DirectoryEntry = oResult.GetDirectoryEntry()
oUser.Properties("mail").Value = sPrimaryAddress
oUser.Properties("ProxyAddresses").Value = lNewList.ToArray()
oUser.CommitChanges()
</code></pre>
<p><em>lPrevList</em> was a list of the e-mail addresses the user already had attached to their profile. Their primary address starts with <strong>SMTP:</strong> while the others start with <strong>smtp:</strong> (lowercase). You might run unto other values like <em>x400</em>, etc.. </p>
<p><strong>Make sure you treat each value with care. You do not want to write a script and then run it across your domain and blow up all the accounts</strong></p>
http://stackoverflow.com/questions/1059936/vb-net-active-directory-question-rename-user-account-and-mailbox/1060285#10602850Answer by Jacob Proffitt for vb.net active directory question - rename user account and mailboxJacob Proffitt2009-06-29T20:17:47Z2009-06-29T20:17:47Z<p>If you're using the .Net Framework 3.5 or better, you're probably better off using System.DirectoryServices.AccountManagement. That makes it a matter of getting the correct UserPrinciple, altering the Name property, and calling the Save method. It might look something like this:</p>
<pre><code>Dim pc As New PrincipalContext(ContextType.Domain, "COMPANY")
Dim up As UserPrincipal = UserPrincipal.FindByIdentity(pc, curUsername)
up.Name = newUsername
up.Save
</code></pre>