是否可以运行命令来生成用户具有完全访问权限的邮箱列表?
我找到了一些可以尝试在 PS AD 模块中运行的东西,但是输出没用。
Get-ADUser mspencer -Properties * | Select msExchDelegateListBL | Export-Clixml 'c:\users\adm-dosmith\desktop\test23.csv'
有人有什么吗?
是否可以运行命令来生成用户具有完全访问权限的邮箱列表?
我找到了一些可以尝试在 PS AD 模块中运行的东西,但是输出没用。
Get-ADUser mspencer -Properties * | Select msExchDelegateListBL | Export-Clixml 'c:\users\adm-dosmith\desktop\test23.csv'
有人有什么吗?
Get-Mailbox | Get-MailboxPermission -User mspencer
这会遍历每个邮箱并返回用户mspencer
拥有的任何权限。
您需要使用 Exchange 命令行管理程序来运行它,因为它使用 Exchange cmdlet。
仅过滤特定用户的完全访问权限:
Get-Mailbox | Get-MailboxPermission |
? {$_.User -match 'mspencer' -and $_.AccessRights -contains "FullAccess"}