Need to add alias email addresses to 1200 accounts
I need to add alias email addresses to an large number of accounts. Is there a tool or an automated process to do this?
November 1st, 2010 11:57am

Exchange version?[string](0..33|%{[char][int](46+("686552495351636652556262185355647068516270555358646562655775 0645570").substring(($_*2),2))})-replace " "
Free Windows Admin Tool Kit Click here and download it now
November 1st, 2010 12:26pm

If you have exchange 2003 then you can add it thru create a new recpint policy and run it for all mailbox obect. For exchange 2007 you need to run powershell cmdlet. How to Create New Recipient Policies:: http://support.microsoft.com/kb/319201 For Exchange 2007:: The following Powershell command will append additional proxy addresses; this cmdlet will only work if the "EmailAddressPolicyEnabled" is $false. Using the following file: {Users.csv} Identity,EmailAddress2 jdoe,john.doe@testlabz.net Enter in each line with a hard return; pipes Import-CSV into Get-Mailbox and Set-Mailbox Import-CSV Users.csv | foreach { $Temp = Get-Mailbox -identity $_.Identity $Temp.EmailAddresses.Add($_.EmailAddress2) Set-Mailbox -Instance $Temp } The result is that "jdoe" will have "john.doe@testlabz.net" appended to his existing email addresses. Additional addresses can be appended by adding the following line(s)... $Temp.EmailAddresses.Add($_.EmailAddress3) $Temp.EmailAddresses.Add($_.EmailAddress4) The Users.csv file must also reflect these secondary and tertiary entries.Anil
November 1st, 2010 1:00pm

you can use admodify.net http://www.msexchange.org/articles/ADModify-Change-Exchange-Specific-AD-User-Attributes.html this tool is one of best friends of exchange admins. inclding me ! :) dowbload this tool from http://admodify.codeplex.com/ Thank youDhruv
Free Windows Admin Tool Kit Click here and download it now
November 1st, 2010 4:41pm

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics