DL permissions- Send As and Send on Behalf permission

Rising Flight 3,731 Reputation points
2021-12-04T17:59:28.1+00:00

Hi Experts

i am using exchange 2016 hybrid environment. we create users in exchange onprem and migrate to cloud. i have onprem DL, lets say onpremdl@Company portal .com
i want to give Send As and Send on Behalf permission to this DL for one user lets say user1@Company portal .com. From GUI i am unable to give the permission.
Will the below powershell syntax help me adding it

Add-RecipientPermission onpremdl@Company portal .com -AccessRights SendAs -Trustee "user1@Company portal .com"
Set-DistributionGroup -Identity "onpremdl@Company portal .com" -GrantSendOnBehalfTo "user1@Company portal .com"

Microsoft Exchange Online Management
Microsoft Exchange Online Management
Microsoft Exchange Online: A Microsoft email and calendaring hosted service.Management: The act or process of organizing, handling, directing or controlling something.
4,175 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,349 questions
Microsoft Exchange Hybrid Management
Microsoft Exchange Hybrid Management
Microsoft Exchange: Microsoft messaging and collaboration software.Hybrid Management: Organizing, handling, directing or controlling hybrid deployments.
1,886 questions
{count} votes

Accepted answer
  1. KyleXu-MSFT 26,211 Reputation points
    2021-12-06T05:29:24.337+00:00

    @Rising Flight

    When the Send As permission exists, the Send on Behalf permission will not work, so you just need to add the send as permission.

    About send as permission, you need to add from both Exchange online and Exchange on-premises:

    Run the following command in the Exchange Management Shell on your on-premises Exchange server:

    Add-ADPermission -Identity EXO1 -User ONPREM1 -AccessRights ExtendedRight -ExtendedRights "Send As"  
    

    Then run the corresponding command in Exchange Online PowerShell:

    Add-RecipientPermission -Identity EXO1 -Trustee ONPREM1 -AccessRights SendAs  
    

    For more detailed information, you could have a look about this article: Mailbox permissions and capabilities NOT supported in hybrid environments


    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.


    0 comments No comments

0 additional answers

Sort by: Most helpful