Public Folder Permission Issue

Mikhail Firsov 1,876 Reputation points
2022-10-27T10:35:44.103+00:00

Hello!

Having the problem trying to apply permissions to a public folder by means of universal security group: as you know by default all users have the Author permissions for any public folder (I'd call them "implicit permissions" because they are displayed as coming from the user "Default" in the Get-PublicFolderClientPermission's output) and if you don't want some user has the Author permission for a folder you can click Manage (Permission) in EAC, add this user and set the appropriate permission level (for example, Reviewer) - and this will work, meaning that the public folder permissions (as seen in Outlook from user's perspective) would change from Author to Reviewer. But it's not wise applying permissions on the per-user basis, so you can make use of the universal security groups - but this time permissionsdo not change from the default Author to Reviewer 9or anything else):

254709-q13.png

What am I missing here??? ...it's not possible to manage public folders without using groups...

Thank you in advance,
Michael

Exchange Server Management
Exchange Server Management
Exchange Server: A family of Microsoft client/server messaging and collaboration software.Management: The act or process of organizing, handling, directing or controlling something.
7,349 questions
{count} votes

Accepted answer
  1. Amit Singh 4,846 Reputation points
    2022-10-31T08:58:12.307+00:00

    Could you please check the permission using the command below?

    Get-PublicFolderClientPermission -Identity "\My Public Folder" -User groupname | Format-List  
     
    

    Yes, you could try re-adding the permission for this group. And check if any steps are missed or wrong with the below process, a similar discussion here:
    If your security group is synced from on-prem:

    New-ADGroup -Name "PF-FolderName" -SamAccountName "PF-FolderName" -GroupCategory Security -GroupScope Universal -DisplayName "PF-FolderName" -Path "OU=Security,OU=Groups,OU=MyDept,OU=Departments,DC=MyDomain,DC=Foo"  
     
    

    The rest were done in a MSOL pssession

    Start-ADSyncSyncCycle -PolicyType delta   
    Get-PublicFolder -Identity "\PublicRoot\PublicFolderName" -Recurse | Add-PublicFolderClientPermission -AccessRights Editor -User PF-FolderName  
    
     
    

    Add-PublicFolderClientPermission
    Remove-PublicFolderClientPermission

    0 comments No comments

3 additional answers

Sort by: Most helpful
  1. Mikhail Firsov 1,876 Reputation points
    2022-10-28T07:57:53.413+00:00

    Hi JameXu-MSFT,

    I'll check propagation of permissions with distribution groups and post back the results.

    Here's the screenshot of my security group's permissions - as you see the group's permissions are correct, the problem is that they do not propagate to users in that group:
    254988-q14.png

    By the way: it's rather weird method for displaying user permissions: as per command's output for the user Shannon it may look like she's currently not having any permissions while she really does have the default Author permission granted ~by means of user Default:
    255043-q1-1.png

    0 comments No comments

  2. Mikhail Firsov 1,876 Reputation points
    2022-10-28T09:51:00.843+00:00

    "Do you have the same problem with distribution group?" - mmm... distribution groups can't be used for applying permissions...

    255101-q21.png
    255093-q22.png

    0 comments No comments

  3. Mikhail Firsov 1,876 Reputation points
    2022-10-31T09:46:05.79+00:00

    Hi imamitsingh,

    "Get-PublicFolder -Identity "\PublicRoot\PublicFolderName" -Recurse | Add-PublicFolderClientPermission -AccessRights Editor -User PF-FolderName" does exactly the same as adding permissions in EAC, and now it's working fine - seems restarting Outlook helped re-evaluate the new permissions (didn't check it earlier because previous permission tests did NOT require restarting Outlook to have the new permissions applied). Thank you very much for your help!

    ...just for not publishing one more post for the accompanying question: would you please tell me why Outlook may be asking for credentials upon starting?

    255606-u8.png

    The only way authentication can work out is to enter the Windows login - Shannon - instead of her email E_Shannon@...?

    Thank you in advance,
    Michael

    0 comments No comments