Link to home
Start Free TrialLog in
Avatar of pramod1
pramod1Flag for United States of America

asked on

office 365 mailboxes, powershell

we have users mailboxes  in office 365 , i want to run powershell command for 10 users  where i need to find those 10 users are having access to which shared mailboxes.

like for ex. users A has full access to which other  mailbox or shared mailbox ?

is there any powershell command?
Avatar of Rajkumar Duraisamy
Rajkumar Duraisamy
Flag of India image

Please use this PowerShell script from Technet Gallery

https://gallery.technet.microsoft.com/office/Export-Office-365-Mailbox-d5c8c85f

Revert for any clarification..
Get-Mailbox -RecipientTypeDetails SharedMailbox -ResultSize:Unlimited | Get-MailboxPermission | select identity,user,accessrights  | where { ($_.User -like '*@*')   }

or try this;

https://blogs.technet.microsoft.com/dpickett/2016/04/29/how-to-get-a-list-of-shared-mailboxes-and-users-with-permissions-to-those-mailboxes-in-exchange-online/
ASKER CERTIFIED SOLUTION
Avatar of Vasil Michev (MVP)
Vasil Michev (MVP)
Flag of Bulgaria image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial