Hi

I am trying to remove some mail aliase from my users account i AD, here are
the script

set oOu = getobject("LDAP://ou=test,ou=people,dc=test,dc=local")
oOu.filter = array("user")
for each oUser in oOu
for each adr in oUser.proxyAddresses
if instr(adr,"test.no") then
oUser.putex 1, proxyAddresses, array(adr)
oUser.setinfo
end if
next
next

msgbox "Finish"


The line oUser.setinfo genrates the error "A constraint violation has
occoured"

Any suggestions ??