2

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?

DanielGibbs
  • 573
  • 5
  • 12
  • 31

2 Answers2

3

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:

AddUsersToPFRecursive.ps1 -toppublicfolder \ -User "FirstName LastName" -Permissions Owner
jscott
  • 24,204
  • 8
  • 77
  • 99
Ken2
  • 46
  • 2
1

Take a look at:

http://technet.microsoft.com/en-us/library/ee633461.aspx

Especially the comparison Administrator access rights differences in section Administrator Access Rights. Only users in group Public Folder Management role group can create top-level public folders.

studiohack
  • 305
  • 5
  • 17