Link to home
Create AccountLog in
Avatar of hcds
hcdsFlag for Austria

asked on

How to set PublicFolder Permissions in Exchange 2013

Hello,

how can I set special Public Folder Permissions for a specified Public Folder Mailbox on Exchange 2013 with Powershell?

The parameter -mailbox is missing in the cmdlet Add-PublicFolderClientPermission.

Christoph
Avatar of Meir Rivkin
Meir Rivkin
Flag of Israel image

try setting -Identity parameter as the target mailbox
Avatar of hcds

ASKER

the parameter -Identity is used for the specified public folder in the public folder mailbox.
for example -identity "\Office\Lab"

In which form do I have to set the -Identity value?

The cmdlet Get-PublicFolderClientPermission does have the -Mailbox parameter. So I don't think that -Identity is the way to go
ASKER CERTIFIED SOLUTION
Avatar of Meir Rivkin
Meir Rivkin
Flag of Israel image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
Set-PublicFolderClientPermission -Identity "\My Public Folder" -User Chris

Get-PublicFolderClientPermission
http://technet.microsoft.com/en-us/library/bb124365%28v=exchg.150%29.aspx

- Rancy
Avatar of hcds

ASKER

sedgwick:
The User parameter specifies the user principal name (UPN), domain\user, or alias of the user for whom rights are being added.

When i have two Secondary Hierarchy Public Folder mailboxes named PFmailbox1 and PFmailbox2.
PFmailbox2 has the public folder \office\lab
So how can I set permissions to this folder? I do not have the option to set the regarding public folder mailbox PFmailbox2

Christoph
Avatar of hcds

ASKER

Sorry my mistake.
The public folder mailbox doesn't have to be specified when adding public folder permissions.

Anyway thanks for the help