Applies to: Exchange Server 2010 SP3, Exchange Server 2010 SP2

Topic Last Modified: 2011-03-19

This topic shows you how to use the Exchange Management Shell to view information about the client access permissions to a public folder.

Note:
You can't use the Exchange Management Console (EMC) to perform this procedure.

Use the Shell to view client access permissions

You need to be assigned permissions before you can perform this procedure. To see what permissions you need, see the "Public folder client permissions" entry in the Mailbox Permissions topic.

This example returns the entire list of the client access permissions for the public folder Marketing.

Copy Code
Get-PublicFolderClientPermission -Identity "\Marketing" | fl

This example returns the user David's client access permissions to the public folder East Coast.

Copy Code
Get-PublicFolderClientPermission -Identity "\Marketing\EastCoast" -User David

For detailed syntax and parameter information, see Get-PublicFolderClientPermission.