2

We have several thousand 'contacts' setup in AD already for a faxing system. We're migrating to an online fax provider that uses e-mail rather than plain old telephone. So, we've bulk edited all the AD records so that the 'mail' attribute is populated with the right e-mail address in the right format.

Now, how do we enable these contacts within Exchange 2007? I've looked through http://technet.microsoft.com/en-us/library/bb684891.aspx but that only seems to talk about manually editing the CSV output to specify the external addresses. AD already knows the external e-mail addresses - I just need the info in Exchange!

Any thoughts?

George Hewitt
  • 1,066
  • 7
  • 13

3 Answers3

1

http://exchangepedia.com/blog/2006/12/bulk-mailbox-enabling-users-exchange-shell.html

get-user –organizationalUnit people | where-object {$_.RecipientType –eq “User” -and $_.department –eq “Sales”} | Enable-Mailbox –Database “EXCHANGE1\Mailbox Database” | get-mailbox | select name,windowsemailaddress,database

Have a read through of the first link - very helpful.

http://exchangepedia.com/2006/11/exchange-server-2007-bulk-creation-of-mailboxes-using-exchange-management-shell.html

Mutahir
  • 2,347
  • 2
  • 32
  • 42
1

Maybe you could use ExchMbx but is untested with Exchange 2007

camilohe
  • 283
  • 2
  • 6
1

Check out ADModify. It allows bulk change to AD attributes including exchange attributes.

Howto article for modifying Exchange attributes with ADModify

JamesBarnett
  • 1,129
  • 8
  • 12