Exchange2013/Outlook2019 - Self Permissions

Penny Miller 116 Reputation points
2021-05-20T22:06:44.137+00:00

Current issue... MailboxUser1, years ago gave MailboxUser2 permission as publishing editor to access their Inbox\subfolder they created and all was good at that time.

Then MailboxUser2 moves to a lower position in the same department but, still has access to MailboxUser1 which they shouldn’t at this time. As the years pass MailboxUser1 didn’t think to check their permissions on any of their folders in their mailbox but, MailboxUser2 can still see MailboxUser1’s Inbox\subfolder when they click on File -> Open & Export -> Other User's Folder. YIKES!!

I’m trying to figure out two things…

  1. Is there a way to disable users from giving other mailbox users access to their mailbox? I know they can share their Calendars w/a button on the ribbon but, I want to disable them from being able to right-click on a folder (i.e. Inbox or Sent Items) & giving permissions themselves.
  2. Who else has done this w/their mailbox with past/present users and they don’t remember? Is there a script I can run in Exchange Shell that will tell me the privilege's the users give? I only know of the following script & it doesn’t show what they have given.

Get-MailboxFolderPermission -Identity MailboxUser1:\inbox

FolderName | User | AccessRights
Inbox | Default | {None}
Inbox | Anonymous | {None}

We are using Exchange 2013 CU23/Windows 2019 Server/Outlook 2019

Outlook Management
Outlook Management
Outlook: A family of Microsoft email and calendar products.Management: The act or process of organizing, handling, directing or controlling something.
4,914 questions
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,372 questions
0 comments No comments
{count} votes

Accepted answer
  1. Penny Miller 116 Reputation points
    2021-05-25T15:01:49.6+00:00

    @Xzsssss

    1. Fortunately, I think for us there aren't too many users that know how to share folders in Outlook or OWA (although I could be wrong) but, there are some. Most users just create subfolders for themselves.
    2. That script you found is perfect for what I need!

    Thank you for your assistance.


2 additional answers

Sort by: Most helpful
  1. Xzsssss 8,861 Reputation points Microsoft Vendor
    2021-05-21T03:06:00.66+00:00

    Hi @Penny Miller ,

    To remove the folder permission on MailboxUser2, you could use Remove-MailboxFolderPermission.
    For your first question, I checked the Exchange docs but still couldn't find anything about blocking folder permission giving.
    You may want to use the registry to disable users from editing their folder permission on Outlook clients:
    Do not allow users to change permissions on folders
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.

    For the second question, you need to use the full path of the subfolder:

    Get-MailboxFolderPermission -Identity MailboxUser1:\inbox\subfolder  
    

    98350-image.png

    I found an article about removing specific user with the target folder's permissions.
    PowerShell Script to Remove Mailbox Folder Permissions
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    98374-image.png
    But it's hard to traverse all the folders' permissions to all users.

    Regards,
    Lou


    If the response is helpful, please click "Accept Answer" and upvote it.
    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.

    0 comments No comments

  2. Penny Miller 116 Reputation points
    2021-05-24T21:46:46.027+00:00

    Hi @Xzsssss

    1. Looks like we may need to add this registry setting through group policy that would disable users from editing their folder permission on Outlook clients. How do I do this for users that use OWA?
    2. I was hoping there was a wildcard for this script that would list the subfolders & their permissions. We have 480 users & I don't want to login as each user (or look over there shoulder) to see if they've created subfolders and if they have given permissions to other users.