July 2011
Intermediate to advanced
480 pages
11h 54m
English
Client permissions for public folders can be managed using a handful of cmdlets that are available in the Exchange Management Shell. In addition, there are some scripts located in the Exchange scripts directory that can be used to make client permission changes in bulk. In this recipe, we will take a look at how you can use both methods to manage public folder client permissions.
To grant Owner permissions to a user on a public folder, use the following command:
Add-PublicFolderClientPermission -Identity \Marketing ` -User Mike ` -AccessRights Owner ` -Server MBX1
The Add-PublicFolderClientPermissions cmdlet can be used to add permissions for a particular user to a public folder. ...