共用方式為


在 Exchange 2013 中管理和疑難排解訊息核准

適用於:Exchange Server 2013

當您嘗試移除仲裁信箱時,可能會收到下列錯誤:

Can't remove the arbitration mailbox < mailbox> because it's being used for the approval workflow for existing recipients that have either membership restrictions or moderation enabled. You should either disable the approval features on those recipients or specify a different arbitration mailbox for those recipients before removing this arbitration mailbox.

仲裁信箱可用來處理仲裁收件者和通訊群組成員資格核准的核准工作流程。 您可以使用 PowerShell 來尋找設定為使用仲裁信箱的所有收件者。 識別收件者之後,您可以將收件者設定為使用不同的仲裁信箱,或停用其仲裁。

開始之前有哪些須知?

步驟 1:使用殼層來尋找使用您嘗試刪除之仲裁信箱的所有收件者

執行下列命令:

$AM = Get-Mailbox "<arbitration mailbox>" -Arbitration
$AMDN = $AM.DistinguishedName
Get-Recipient -RecipientPreviewFilter "ArbitrationMailbox -eq '$AMDN'"

例如,若要尋找使用名為 Arbitration Mailbox01 之仲裁信箱的所有收件者,請執行下列命令:

$AM = Get-Mailbox "Arbitration Mailbox01" -Arbitration
$AMDN = $AM.DistinguishedName
Get-Recipient -RecipientPreviewFilter "ArbitrationMailbox -eq '$AMDN'"

注意事項

仲裁信箱是使用辨別名稱指定 (DN) 。 如果您知道仲裁信箱的 DN,您可以執行單一命令: Get-Recipient -RecipientPreviewFilter "ArbitrationMailbox -eq <DN>"

步驟 2:使用殼層來指定不同的仲裁信箱,或停用收件者的仲裁

若要停止仲裁收件者使用您嘗試刪除的仲裁信箱,您可以指定不同的仲裁信箱,或停用收件者的仲裁。

如果您選擇為收件者指定不同的仲裁信箱,請執行下列命令:

Set-<RecipientType> <Identity> -ArbitrationMailbox <different arbitration mailbox>

例如,若要重新設定名為 All Employees 的通訊群組,以使用名為 Arbitration Mailbox02 的仲裁信箱進行成員資格核准,請執行下列命令:

Set-DistributionGroup "All Employees" -ArbitrationMailbox "Arbitration Mailbox02"

如果您選擇停用收件者的仲裁,請執行下列命令:

Set-<RecipientType> <Identity> -ModerationEanbled $false

例如,若要停用名為 Human Resources 的信箱仲裁,請執行下列命令:

Set-Mailbox "Human Resources" -ModerationEanbled $false

如何知道這是否正常運作?

如果您可以刪除仲裁信箱,而不會收到正在使用它的錯誤,程式就會成功。

有問題嗎? 在 Exchange 論壇中尋求協助。 瀏覽 Exchange Server 的論壇。