Tuesday 2 August 2016

Office 365 Exchange Online - Delegate Mailbox Permissions

Mental note for me, as I am studying for MCSA 70-347. 

# Send As Permissions for jblue, allowing jgreen to Send As. No indication the message was send by the delegate.

Add-RecipientPermission "jblue" -AccessRights SendAs -Trustee "jgreen" 

# Full Access for jblue, allowing jgreen to have Full Access to the jblue mailbox. Please note messages cannot be send by the delegate.

Add-MailboxPermission -Identity "jblue" -User "jgreen" -AccessRights FullAccess -InheritanceType All

# Send Behalf, allows the delegate to send on behalf of the orignal user but does not hide their identity.

Set-Mailbox -Identity "jblue" -GrantSendOnBehalfTo 
"jgreen"

https://www.dropbox.com/s/9c8b3nckid299h3/Exchange%20Online%20Permissions.ps1?dl=0