How to automatically or programmatically add shared mailbox / shared folder to some user's Outlook for Web?

1

1

I administer an Office 365 environment. This environment will contain a couple of shared mailboxes. I do not want my users to have to manually add them to their Outlook for Web when having to use them for the first time.

Instead, I would like to add the respective shared mailboxes automatically for them. Is there some option that allows me to do that for them? Or is there some PowerShell command that lets me do that?

Hauke P.

Posted 2018-04-30T19:14:44.683

Reputation: 484

Giving them full access to the mailbox doesn't automatically add the share mailbox to their outlook (via automapping)? With PowerShell Add-MailboxPermission -Identity sharemailbox@contoso.onmicrosoft.com -User user@contoso.onmicrosoft.com -AccessRights FullAccess -AutoMapping:$true, default should be AutoMapping:$true, but wrote it implicitly just to make usre. – shinjijai – 2018-04-30T19:25:34.383

It might do that with Microsoft Outlook (standalone). It does not do that with Outlook Online / Outlook for Web. – Hauke P. – 2018-05-06T13:30:23.060

OWA definitely does not do that, if you want to access a shared mailbox on owa, you add the email address to the end of the url. For example https://outlook.office365.com/owa/sharemailbox@email.com.

– shinjijai – 2018-05-07T11:43:38.553

Answers

0

What about converting those to Office365 Groups and assign users as members. That should auto-populate in Outlook for the web, as well as Outlook Mobile, and Outlook Desktop.

Jesus Shelby

Posted 2018-04-30T19:14:44.683

Reputation: 1 248