Thursday 27 June 2013

How to find the list of users having full access permission on other Mailbox

You may get an request to inform who are all having full access permission on a Shared Mailbox, to find the list of users who are all having full access permission on other Mailbox in Exchange Server 2010 and Exchange Server 2013, use the below shell command
Get-MailboxPermission -Identity "Mailbox Name"| where { ($_.AccessRights -like "*FullAccess*") -and ($_.IsInherited -eq $false) -and -not ($_.User -like "NT AUTHORITY\SELF") } | Select User

No comments:

Post a Comment