Link to home
Start Free TrialLog in
Avatar of ctarbet
ctarbet

asked on

Exchange 2007 - Mailing List

I use Exchange 2007 in a school.  Every staff member has a mailbox enabled user account.  I want to create mailing lists that contain the parents email addresses, but I don't want to create a contact for each parent.  In other words, I don't want my global address book to be full of a bunch of random people who don't need to be seen.  How can I setup a group that simply contains a bunch of email addresses?
ASKER CERTIFIED SOLUTION
Avatar of ry_berk
ry_berk
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
...so they CANT be searched for ***
SOLUTION
Avatar of Akhater
Akhater
Flag of Lebanon image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of ctarbet
ctarbet

ASKER

Ok, thanks.

This is what I will do:

 Bulk  importing contacts from CSV to Exchange 2007    When doing a bulk import of contacts you can use the following  Powershell command to read a CSV file.
Import-Csv  contacts.csv | ForEach { New-MailContact -Name $_.displayName -Firstname  $_.FirstName -LastName $_.LastName -ExternalEmailAddress  $_.EmailNddress -OrganizationalUnit "YourDomain.Local/Contacts" }

http://mymcp.blogspot.com/2007/07/bulk-importing-contacts-from-csv-to.html


Then I will use the "hide from address lists" check box on the contact properties panel.