I am currently running Exchange Server 2010 on Windows Server 2008 R2. I have a user that I would like to be able to create/delete public folders in the root public folder.
How do I give this user permission to do this?
So far I have tried adding the user to the Public Folder Management, Domain Admins, and Administrators groups, and running the following scripts in the powershell:
Add-PublicFolderAdministrativePermission -Identity "\" -User "Username" -AccessRights AllExtendedRights -InheritanceType SelfAndChildren
This appears to have done something, but the user still cannot create public folders in the root public folder.
AddUsersToPFRecursive.ps1 -toppublicfolder \ -User "Username" -Permissions Owner
This gives me an access denied error.
Any ideas?
Use the Exchange user name instead of the domain login name. By Default this is the First Name plus the Last name. For example, use "John Smith" instead of "jsmith". So, the command would be:
Take a look at:
Especially the comparison
Administrator access rights differences
in sectionAdministrator Access Rights
. Only users in groupPublic Folder Management role group
can create top-level public folders.