Even Mien Asked: 2009-08-26 13:47:12 +0800 CST2009-08-26 13:47:12 +0800 CST 2009-08-26 13:47:12 +0800 CST Powershell commands for Distribution Lists in Public Folders 772 How can I add and remove members to a distribution list in a public folder through PowerShell? This is for Exchange 2007. exchange-2007 powershell public-folders distribution-lists 3 Answers Voted fenster 2009-08-28T10:04:14+08:002009-08-28T10:04:14+08:00 Add-DistributionGroupMember -Identity "Marketing Managers" -Member [email protected] From here: http://technet.microsoft.com/en-us/library/aa995970.aspx Pretty much the same for Removing: but use Remove-DistributionGroupMember instead slipsec 2010-01-03T16:06:56+08:002010-01-03T16:06:56+08:00 If you mean a mail-enabled public folder, you can use: get-mailpublicfolder "foo" | set-mailpublicfolder -PrimarySmtpAddress "[email protected]" Best Answer Even Mien 2010-01-20T10:01:52+08:002010-01-20T10:01:52+08:00 After researching this, it looks like the answer is that it is not possible though Powershell.
From here: http://technet.microsoft.com/en-us/library/aa995970.aspx
Pretty much the same for Removing:
but use Remove-DistributionGroupMember instead
If you mean a mail-enabled public folder, you can use:
After researching this, it looks like the answer is that it is not possible though Powershell.