July 2017
Intermediate to advanced
648 pages
31h 9m
English
To assign Send-As permissions to a distribution group, the process is exactly the same as for a mailbox. Use the Add-ADPermission cmdlet, as shown in the following command:
Add-ADPermission Marketing '
-User ecook '
-AccessRights ExtendedRight '
-ExtendedRights "Send As"
You can also provide the identity of the group to the Add-ADPermission cmdlet via a pipeline command, just as we saw earlier with the Get-Mailbox cmdlet. To do this with a distribution group, use the Get-DistributionGroup cmdlet:
Get-DistributionGroup -ResultSize Unlimited | '
Add-ADPermission -User ecook '
-AccessRights ExtendedRight '
-ExtendedRights "Send As"
In the given example, the user ecook is given Send-As rights to all distribution groups in ...
Read now
Unlock full access