Remove all secondary email addresses through powershell script


$Input = Get-Content C:\users.txt | Get-Mailbox
$Input | foreach {
write-host “$($_.Name) —- $($_.EmailAddresses.Count)”
for ($i = $_.EmailAddresses.Count ;$i -ge 0; $i — )
{
$_.EmailAddresses[$i].ProxyAddressString  
if ($_.EmailAddresses[$i].IsPrimaryAddress  -eq $false )
{
$_.EmailAddresses.RemoveAt($i)

}
  set-mailbox  $_.Identity -EmailAddresses $_.EmailAdresses
}

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s