How to give SendAs and Full Access permission to a Shared Mailbox(PowerShell)#Microsoft #PowerShell

preview_player
Показать описание
Hi Everyone
In this video, I can show how you use PowerShell to give Full access & Send As permissions to a shared mailbox in Exchange Online.

#To assign the Send As Permission to mailbox & Groups

Add-RecipientPermission -Identity "MailboxOrGroupIdentity" -Trustee "DelegateIdentity" -AccessRights SendAs

#To assign "Full Access" permissions for a Mailbox

Add-MailboxPermission -Identity "MailboxName" -User "Identity" -AccessRights FullAccess -InheritanceType All

Royalty-free Music:
Music Name: Happiness

#powershell #howto #exchangeonline #office365 #TechTripChannel #Outlook
Рекомендации по теме
Комментарии
Автор

In case I need to add multiple users permission as send as what can I use ? I have worked around a way to add full access "
Import-Csv "H:\file.csv" | foreach { Add-MailboxPermission "mailbox" -User $_.users -AccessRights FullAccess -AutoMapping:$false } and it works, to add users to send as I have Get-Mailbox “mailbox” | Add-ADPermission -user “” -ExtendedRights "Send As" I dont understand how to importe the csv list like in the first example to do it at once

mseiferalmasy
Автор

Before doing all this do you connect to online exchange, or do you install the module?

disguy
Автор

Hi, how do you grant everyone access to the Shared Mailbox?

OPCollector