Hi,@StefanoC
Thanks for posting your question in the Microsoft Q&A forum.
It looks like the issue might indeed be related to the Access Control List (ACL) for that specific public folder.
1.You can remove and re-add permissions: Manually remove and re-add the permissions for the public folder to potentially rectify any corruption.
Use the following command to remove a specific user’s permissions:
Remove-PublicFolderClientPermission -Identity "\YourProblematicFolder" -User "UserWithIssues"
Then re-add the permissions:
Add-PublicFolderClientPermission -Identity "\YourProblematicFolder" -User "UserWithIssues" -AccessRights <AccessRight>
Repeat this for all users who have permissions on the folder.
2.If the above steps do not resolve the issue, you can try exporting the data, deleting the public folder, and then re-creating it.
- Export the contents to a PST file:
New-MailboxExportRequest -Mailbox <PublicFolderMailbox> -PublicFolder “\YourProblematicFolder” -FilePath \\Path\To\Export\File.pst
- After the export completes, remove the public folder:
Remove-PublicFolder -Identity "\YourProblematicFolder"
- Recreate the public folder and import the data back:
New-PublicFolder -Name "YourProblematicFolder"
- Then import the PST:
New-MailboxImportRequest -Mailbox <PublicFolderMailbox> -FilePath \\Path\To\Export\File.pst
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.