How can I add and remove members to a distribution list in a public folder through PowerShell?

This is for Exchange 2007.

link|improve this question

feedback

3 Answers

Add-DistributionGroupMember -Identity "Marketing Managers" -Member adam@contoso.com

From here: http://technet.microsoft.com/en-us/library/aa995970.aspx

Pretty much the same for Removing:

but use Remove-DistributionGroupMember instead

link|improve this answer
I believe that is only for distribution groups using Active Directory. – Even Mien Aug 29 '09 at 15:58
feedback

If you mean a mail-enabled public folder, you can use:

get-mailpublicfolder "foo" | set-mailpublicfolder -PrimarySmtpAddress "foo@example.com"
link|improve this answer
feedback
up vote 0 down vote accepted

After researching this, it looks like the answer is that it is not possible though Powershell.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.