Exchange Online - delegate receives copies of meeting-related messages sent to me - Untick for all users

Baz 26 Reputation points
2022-10-19T17:30:54.103+00:00

Hi Guys

I am trying to set all of our users <50 to 'Untick the delegate receives copies of meeting-related messages sent to me' for all of their 'already set' deletes

I am using Exchange Online PowerShell:

Set-CalendarProcessing -Identity "user"-ForwardRequestsToDelegates $false

but this does not seem to affect the tick in the box for any of my test user's delegates.

Can someone tell me where i am going wrong please?

Exchange | Exchange Server | Management
{count} votes

Accepted answer
  1. Andy David - MVP 158K Reputation points MVP Volunteer Moderator
    2022-10-19T18:00:24.6+00:00

    Well, you can use this command and see how it works for you. If it does, awesome! If not, then go the Outlook route. The reason I mention it is because its the only sure way I have that works consistently!
    Clearing the SharingPermissionFlags removes the delegate feature.
    Example:

    Set-MailboxFolderPermission huku:\calendar -User vasil -AccessRights Editor -SharingPermissionFlags None  
    

    https://www.michev.info/Blog/Post/1976/managing-outlook-delegates-via-powershell


4 additional answers

Sort by: Most helpful
  1. Baz 26 Reputation points
    2022-10-20T12:36:05.467+00:00

    Hi Andy

    I don't know what I did / what happened before , but i have now got this working with the

    Set-MailboxFolderPermission USER1:\calendar -User USER2 -AccessRights Editor -SharingPermissionFlags None

    So thanks Andy

    Baz

    1 person found this answer helpful.
    0 comments No comments

  2. Andy David - MVP 158K Reputation points MVP Volunteer Moderator
    2022-10-19T17:38:55.25+00:00

    that command doesnt work for user mailboxs, just resource mailboxes:
    https://learn.microsoft.com/en-us/powershell/module/exchange/set-calendarprocessing?view=exchange-ps
    252088-image.png

    I have found the only way to ensure that box gets unchecked without affecting existing delegate perms is to uncheck in Outlook


  3. Baz 26 Reputation points
    2022-10-19T17:55:00.703+00:00

    Ahh .. That I did not spot.

    So, with that being known.... there is no way of administering this for my users?

    I guess I will have to send out an email asking them to untick themselves :-(

    Cheers

    0 comments No comments

  4. Baz 26 Reputation points
    2022-10-20T10:57:31.507+00:00

    Thanks Andy

    I tested the command below and it removed the targeted delegate from my delegates.

    However, I just wanted to remove the tick from the 'delegate receives copies of meeting-related messages sent to me" box

    Have i understood this incorrectly

    252418-image.png

    Just FYI... The situation is a thus...

    We have a lady that enters all of our holiday into our calendars. Historically our users have manually added her as a delegate for their calendar.
    she is now complaining that she gets all meeting invite acceptance and declines etc... As we did not untick the box (as by default it is on)
    i was hoping to be able to avoid asking our users to manually untick .. involving the users always involves pain...


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.