我使用PowerShell命令行开关提取MailboxFolderPermissions。 我使用 Get-MailboxfolderStatistics 获取特定邮箱的文件夹列表,然后使用 Get-MailboxfolderPermission 获取所有可用文件夹的权限。
对于我连接到的Exchange服务器上本地托管的邮箱,一切正常。 但是在同一个域中,在第一个服务器上调用Get-Mailbox时,还会列出另一个Exchange服务器和托管在其上的邮箱。
当我尝试为此类" remote"运行 Get-MailboxfolderStatistics 或 Get-MailboxfolderPermission 时邮箱我得到了错误:
对于 Get-MailboxFolderStatistics cmdlet:
Unable to retrieve mailbox folder statistics for mailbox xxxxxxx@xxxxxx.local. Failure: Error code -2146233088 occurred with message Cannot open mailbox /o=xxxxxxxx/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=EXCH2013/cn=Microsoft System Attendant..
+ CategoryInfo: ReadError: (:) [Get-MailboxFolderStatistics],MailboxFolderStatisticsException
+ FullyQualifiedErrorId : BE037E6,Microsoft.Exchange.Management.Tasks.GetMailboxFolderStatistics
+ PSComputerName: xxxxxxxxxxx
对于 Get-MailboxFolderPermission cmdlet:
Cannot open mailbox /o=xxxxxxxx/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=EXCH2013/cn=Microsoft System Attendant.
+ CategoryInfo: NotSpecified: (0:Int32) [Get-MailboxFolderPermission], ConnectionFailedTransientException
+ FullyQualifiedErrorId : A44BD817,Microsoft.Exchange.Management.StoreTasks.GetMailboxFolderPermission
+ PSComputerName: xxxxxxxxxxx
有谁知道上述错误的原因是什么?
是否可以列出远程邮箱文件夹的权限?
非常感谢任何帮助。
答案 0 :(得分:0)