Forum Discussion
Ross Crill
Jul 26, 2021Copper Contributor
Installing Multiple Outlook Accounts
Hi All I have two outlook accounts in my Navigation Pane. Each account seems to work if I manually select either of the account. I want to be able to toggle the default account from on to other. ...
VasilMichev
Jul 26, 2021MVP
Best talk with your IT guy, as they will need to adjust permissions. They will need to remove automapping first, easy way to do that is remove your permissions, then grant Full Access via PowerShell:
Add-MailboxPermission shared@domain.com -User you@domain.com -AccessRights FullAccess -AutoMapping $false
Assuming you have the necessary permissions (Full access), you can follow the steps here: https://www.michev.info/Blog/Post/2025/how-to-add-a-shared-mailbox-as-additional-account-in-outlook-2016-build-8431-and-above-on-windows-10-1709-and-above
Add-MailboxPermission shared@domain.com -User you@domain.com -AccessRights FullAccess -AutoMapping $false
Assuming you have the necessary permissions (Full access), you can follow the steps here: https://www.michev.info/Blog/Post/2025/how-to-add-a-shared-mailbox-as-additional-account-in-outlook-2016-build-8431-and-above-on-windows-10-1709-and-above
Ross Crill
Jul 26, 2021Copper Contributor
Thank you! I will check with IT.