问题说明了一切:我想生成一个报告,显示谁可以访问其他用户邮箱的完整列表。
PowerShell是首选,但如果需要,我也会使用Exchange工具。
提前致谢。
Get-Mailbox -ResultSize Unlimited | Get-MailboxPermission | ? {($_.IsInherited -eq $false) -And ($_.User.ToString() -ne 'NT AUTHORITY\SELF') -And ($_.Deny -eq $false)}