Get-mailcontact -OrganizationalUnit "contoso.com/path/to/ou" | Set-mailContact -EmailAddressPolicyEnabled $false -whatif
Disable email addresspolicy on all contacts in one OU
Leave a reply
Get-mailcontact -OrganizationalUnit "contoso.com/path/to/ou" | Set-mailContact -EmailAddressPolicyEnabled $false -whatif
get-mailcontact -OrganizationalUnit "contoso.com/path/to/ou" | Set-mailContact -HiddenFromAddressListsEnabled $true -whatif
get-mailcontact -OrganizationalUnit "contoso.com/path/to/ou" |
foreach {
$a = $_.emailaddresses
$b = $_.emailaddresses
foreach($e in $a)
{
if ($e.tostring() -match "@emailtoremove.com")
{ $b -= $e; }
}
$_ | Set-mailContact -emailaddresses $b } -whatif }