Resource mailbox accounts

HASSAN BIN NASIR DAR 306 Reputation points
2021-10-23T22:21:37.917+00:00

Hi

How can I see the list of resource (room/equip) mailbox accounts using powershell and save into excell sheet.

Regards

Microsoft Exchange Online Management
Microsoft Exchange Online Management
Microsoft Exchange Online: A Microsoft email and calendaring hosted service.Management: The act or process of organizing, handling, directing or controlling something.
4,171 questions
Exchange Server Management
Exchange Server Management
Exchange Server: A family of Microsoft client/server messaging and collaboration software.Management: The act or process of organizing, handling, directing or controlling something.
7,342 questions
Microsoft Entra
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Vasil Michev 95,096 Reputation points MVP
    2021-10-24T07:09:29.363+00:00

    Try something like this:

    Get-Mailbox -RecipientTypeDetails RoomMailbox,EquipmentMailbox | select * | Export-CSV -nti blabla.csv
    
    1 person found this answer helpful.