DL permissions

Rising Flight 5,216 Reputation points
2025-04-15T03:51:07.5966667+00:00

I have a distribution lists (DL) in Exchange Online and Exchange onprem, and I would like to assign the following permissions using PowerShell. Could you please guide me with the correct PowerShell syntax?

Send As
Send on Behalf
Exchange Online
Exchange Online
A Microsoft email and calendaring hosted service.
6,171 questions
0 comments No comments
{count} votes

Accepted answer
  1. Anonymous
    2025-04-17T11:53:02.2833333+00:00

    Hi Rising Flight,

     

    Thank you for posting your question in the Microsoft Q&A forum.

    1. For on-prem Exchange distribution group, you could try the following command.

    Send As: Add-ADPermission -Identity "group_name" -User delegate_user -ExtendedRights "Send As"

    Send on behalf: Set-DistributionGroup -Identity "group_name" -GrantSendOnBehalfTo delegate_user

    For more details about the command in on-prem Exchange, please check:

    Use the Exchange Management Shell to assign the Send As permission to mailboxes and groups

    Use the Exchange Management Shell to assign the Send on Behalf permission to mailboxes and groups

    1. For Exchange Online distribution group, you could try the following command.

    Send As: Add-RecipientPermission -Identity "group_name" -Trustee "delegate_user" -AccessRights SendAs

    Send on behalf: Set-DistributionGroup -Identity "group_name" -GrantSendOnBehalfTo delegate_user

    For more details about the command in Exchange Online, please check:

    Use Exchange Online PowerShell to assign the Send As permission to mailboxes and groups

    Use Exchange Online PowerShell to assign the Send on behalf permission to mailboxes and groups


    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

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.