Hello,
I am looking for a Power Shell script to add new SMTP address 200 users and do not want to touch existing SMTP and X.500 addresses. am using Exchange server 2010 sp1
Can someone help ?
i tried with the below script executing on exchange PS, i didnt receive any error and there is no result also..
Import-Csv c:\data.csv | Foreach{
$maileg = Get-Mailbox -Identity $_.Name
$maileg.EmailAddresses += $_.emailaddress
}
srini