Add secondary email address based on primary smtp address via EMS
To Add Secondary Email.
Create One More Email Address Policy.
Where it will apply for users only who are using Email addresss policy.
For Users who are not using Email Address policy , We need to add manually one by oneSatheshwaran Manoharan | Exchange 2003/2007/2010 | Blog:http://www.careexchange.in
January 30th, 2012 10:21pm
Good One Dominic !!Satheshwaran Manoharan | Exchange 2003/2007/2010 | Blog:http://www.careexchange.in
Free Windows Admin Tool Kit Click here and download it now
January 31st, 2012 10:44am
http://powershellcommunity.org/Forums/tabid/54/aft/3359/Default.aspxDominic Savio | MVP Exchange Server (2008 ) | MCITP| MCSA: M | www.ExchangeServerInfo.Net
January 31st, 2012 10:47am
How do I add secondary email address based on primary smtp address via EMS?
Some users are using email address policy some are not....
User has primary smtp address of john_doe@abc.com and I want to add john_doe@xyz.com as secondary email....
Thanks,
Jonathan F-
Free Windows Admin Tool Kit Click here and download it now
January 31st, 2012 1:01pm
To Add Secondary Email.
Create One More Email Address Policy.
Where it will apply for users only who are using Email addresss policy.
For Users who are not using Email Address policy , We need to add manually one by oneSatheshwaran Manoharan | Exchange 2003/2007/2010 | Blog:http://www.careexchange.in
January 31st, 2012 2:20pm
We have about 6000 users that I need to do this on.... can it be scripted?
Thanks,
Jonathan F-
Free Windows Admin Tool Kit Click here and download it now
January 31st, 2012 3:54pm
Upto my Knowledge there is so such script available.
If I find one . will get you that .!Satheshwaran Manoharan | Exchange 2003/2007/2010 | Blog:http://www.careexchange.in
January 31st, 2012 4:08pm
Here is what I ended up doing, it's a mickey mouse but worked for me....
#
$mailboxes = Get-Mailbox -OrganizationalUnit "abc.com/Locations/XXX"
foreach ($mailbox in $mailboxes)
{
$newaddress = $mailbox.primarysmtpaddress.local + "@xyz.com"
$mailbox.EmailAddresses += $newaddress
Set-Mailbox -Identity $mailbox.samaccountname -EmailAddresses $mailbox.EmailAddresses
}
#
Thanks,
Jonathan
Free Windows Admin Tool Kit Click here and download it now
January 31st, 2012 11:28pm
http://powershellcommunity.org/Forums/tabid/54/aft/3359/Default.aspxDominic Savio | MVP Exchange Server (2008 ) | MCITP| MCSA: M | www.ExchangeServerInfo.Net
February 1st, 2012 2:47am
http://technet.microsoft.com/en-us/library/bb232171.aspxDominic Savio | MVP Exchange Server (2008 ) | MCITP| MCSA: M | www.ExchangeServerInfo.Net
Free Windows Admin Tool Kit Click here and download it now
February 1st, 2012 2:48am