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...
Warning: Ugly code ahead!
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
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()
lPrevList was a list of the e-mail addresses the user already had attached to their profile. Their primary address starts with SMTP: while the others start with smtp: (lowercase). You might run unto other values like x400, etc..
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
