為什麼 Get-MailboxFolder 回傳「郵箱不可用」?

為什麼 Get-MailboxFolder 回傳「郵箱不可用」?

我想在 PowerShell 中取得我郵箱的資料夾清單。

由於我們有 ExchangeOnline,我像這樣連接到我的交換伺服器:

$Session = New-PSSession -ConfigurationName Microsoft.Exchange `
           -ConnectionUri https://ps.outlook.com/powershell/ -Credential $cred `
           -Authentication Basic -AllowRedirection
Import-PSSession $Session

現在解決我的問題,Get-MailboxFolderPermission有效,但Get-MailboxFolder總是返回。為什麼?The mailbox [email protected] is not available

PS Z:\Powershell-Scripts\Functions\Exchangeonline> Get-MailboxFolderPermission "[email protected]:\Inbox"

FolderName           User                 AccessRights                                                                                                 SharingPermissionFlags                                                                                     
----------           ----                 ------------                                                                                                 ----------------------                                                                                     
Inbox                Standard             {None}                                                                                                                                                                                                                  
Inbox                Anonym               {None}                                                                                                                                                                                                                  



PS Z:\Powershell-Scripts\Functions\Exchangeonline> get-mailboxfolder "[email protected]:\Inbox"
Das angegebene Postfach "[email protected]" ist nicht vorhanden.
    + CategoryInfo          : NotSpecified: (:) [Get-MailboxFolder], ManagementObjectNotFoundException
    + FullyQualifiedErrorId : [Server=AM4PR0302MB2626,RequestId=a6939056-15df-4b45-a10b-8b1cbb4a9207,TimeStamp=15.03.2018 14:31:00] [FailureCategory=Cmdlet-ManagementObjectNotFoundException] 9DD76FE4,Microsoft.Exchange.Management.StoreTasks.GetMailboxFolder
    + PSComputerName        : ps.outlook.com

我使用的是 PS 版本 5.1.14393.2068

編輯:它也不適用於 5.1.16299.251 和 4.0

答案1

在命令上執行 Get-Help 會給出以下結果:

“使用 Get-MailboxFolder cmdlet 查看您自己郵箱中的資料夾。管理員無法使用此 cmdlet 查看其他郵箱中的資料夾(該 cmdlet 只能透過 MyBaseOptions 使用者角色使用)。”

看起來它正在做它本來要做的事情。

相關內容