Andy

Administrator
Creative Team
User ID
1
Joined
7 Jan 2019
Messages
1,121
Reaction score
57
Points
48
In Exchange 2010 Service Pack 1 (SP1) Exchange introduced a feature that allows Outlook 2007 and Outlook 2010 clients to automatically map to any mailbox to which a user has Full Access permissions. If a user is granted Full Access permissions to another user’s mailbox or to a shared mailbox, Outlook automatically loads all mailboxes to which the user has full access.

Use these commands to load the Exchange Online cmdlets:
Code:
$UserCredential = Get-Credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
Import-PSSession $session
This example grants the user Andy full access permission to Thirza’s mailbox and disables the auto-mapping feature.
Code:
Add-MailboxPermission -Identity [email protected] -User [email protected] -AccessRight FullAccess -InheritanceType All -Automapping $false
Another example, to add full access permission for Leah to Dave’s mailbox, type the following command:
Code:
Add-MailboxPermission -Identity [email protected] -user [email protected] -accessrights Fullaccess -AutoMapping:$false
Refer to this link for more information.
 
 Short URL:
Back
Top