How to find users shared mailbox

Zhassulan Mustafin 21 Reputation points
2022-05-22T10:14:36.99+00:00

For example user have access to shared mailbox.
How I can find it.

Exchange | Exchange Server | Management
{count} votes

Accepted answer
  1. Aholic Liang-MSFT 13,886 Reputation points Microsoft External Staff
    2022-05-23T07:14:42.187+00:00

    Hi @Zhassulan Mustafin ,

    You can refer to the following cmd to get the addresses of shared mailboxs :

    Get-Mailbox -ResultSize Unlimited | Get-Mailboxpermission -user user1601 | select  @{Name="Displayname"; Expression={(Get-Mailbox $_.identity.ToString()).Displayname.ToString()}}, @{Name="primarysmtpaddress"; Expression={(Get-Mailbox $_.identity.ToString()).Primarysmtpaddress.ToString()}}, user, @{Name="AccessRights";Expression={$_.AccessRights}}   
    

    204537-2022-05-23-01.png


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
    Note: Please follow the steps in our [documentation][2] to enable e-mail notifications if you want to receive the related email notification for this thread.

    [2]: https://learn.microsoft.com/en-us/answers/articles/67444/email-notifications.html

    1 person found this answer helpful.

2 additional answers

Sort by: Most helpful
  1. Martin Meiner Tästensen 461 Reputation points
    2022-05-22T12:02:27.457+00:00

    So just to be clear, do you wish to find all shared mailboxes that a specific user has access to?

    If that's the case, then you can archieve this using powershell, simply use a command like below. That will result in showing all mailboxes and permissions that the specified user has access to.

    Get-Mailbox -ResultSize unlimited | Get-MailboxPermission -User <insert mailaddress of user>
    

    If this is not what you mean, please elaborate with a few more details what you wish to archieve

    1 person found this answer helpful.

  2. Jean Sanabia 1 Reputation point
    2022-05-23T18:55:17.22+00:00

    Boa tarde,

    Pelo painel de Administração do Office 365 vai na opção Teams e Grupos --> Caixas de Correios Compartilhadas. Será exibido as contas de todas as caixas que estão compartilhadas, clicando na caixa desejada, você consegue verificar quem está com permissão naquela caixa de ler ou de enviar em nome de.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.