Does anyone know what Exchange Online PowerShell commands to use to get all the users that have SendAs AccessRights to a given shared mail box.
I was thinking it was something with Get-Mailbox | Get-RecipientPermission but I need the additional correct syntax.
Thanks, Jeff
Thanks for your time Vlad. I’ll try to detail for better understanding.
In the table, the Trustee has Send As permission on Identity. You could filter in the Where to select an identity= your shared mailbox .
I am not sure maybe I don’t understand the full requirement!
Thanks Vlad. This gives me the following, but what I’m looking for is a list of every user that has SendAs on a giving shared mailbox.
Identity Trustee AccessControlType AccessRights Inherited
——– ——- —————– ———— ———
<user> <user> Allow {SendAs} False
Try this Jeff!
Get-RecipientPermission | where {($_.Trustee -ne ‘nt authority\self’) -and ($_.Trustee -ne ‘null sid’)}