1: 2: 3: 4: 5: 6: 7:
$OU = [ADSI]"LDAP://OU=Contacts,DC=yourdomain,DC=com" ForEach ($Contact in $OU.PsBase.Children) { $Contact.Get("proxyAddresses") | ?{ $_ -Like "*@MyNaffOrg.com" } | %{ $Contact.PutEx(4, "proxyAddresses", @("$_")) $Contact.SetInfo() } }