当前位置:网站首页 > 更多 > 玩电脑 > 正文

[玩转系统] 移动 Exchange 邮箱失败其他停止在 95%

作者:精品下载站 日期:2024-12-14 18:06:44 浏览:13 分类:玩电脑

移动 Exchange 邮箱失败其他停止在 95%


我们在 Exchange Server 中进行邮箱迁移。在Exchange Server中迁移邮箱时,我们总是希望看到100%完成的邮件。有时,我们在 Exchange 迁移中会收到 FailedOther Stop at 95% 消息。不幸的是,移动请求未完成。这种情况我们应该怎么办呢?

状态详细信息 失败其他 95%

以管理员身份运行 Exchange 命令行管理程序。我们喜欢检查正在移动的邮箱的移动状态。我们将使用 Get-MoveRequest cmdlet。我们以用户 John Doe(电子邮件地址为 [email protected])为例。

[PS] C:\>Get-MoveRequest | Get-MoveRequestStatistics

DisplayName StatusDetail    TotalMailboxSize                TotalArchiveSize PercentComplete
----------- ------------    ----------------                ---------------- ---------------
Neal Donna  CopyingMessages 56.97 GB (61,167,145,401 bytes)                  75             
Fox Marvin  CopyingMessages 93,93 GB (100,857,634,368 bytes)                 75
Doe John    FailedOther     23,17 GB (24,881,934,963 bytes)                  95

看一下第三行。

状态详细信息:失败其他
完成百分比:95%

修复 FailedOther 停止在 95% 的选项

我们有两种选择来完成移动请求,并且不获取 FailedOther Stops at 95% 消息。

  1. 删除移动请求并使用 BadItemLimitAcceptLargeDataLoss 标志重新开始。

  2. 更改参数并使用 BadItemLimitAcceptLargeDataLoss 标志恢复移动请求。

我更喜欢选项 2,因为邮箱已被移动。删除并开始移动只需要带宽和时间。

选项 1:删除移动请求并启动移动请求

运行命令以删除移动请求并启动移动请求。

[PS] C:\>Remove-MoveRequest -Identity "Doe, John"

Confirm
Are you sure you want to perform this action?
Removing completed move request "Doe, John".
[Y] Yes  [A] Yes to All  [N] No  [L] No to All  [?] Help (default is "Y"): A
[PS] C:\>New-MoveRequest -Identity "Doe, John" -TargetDatabase "DB14-2016" -BadItemLimit "200" -AcceptLargeDataLoss
WARNING: When an item can't be read from the source database or it can't be written to the destination database, it
will be considered corrupted. By specifying a non-zero BadItemLimit, you are requesting Exchange not copy such items to
the destination mailbox. At move completion, these corrupted items will not be available at the destination mailbox.

DisplayName StatusDetail        TotalMailboxSize             TotalArchiveSize PercentComplete
----------- ------------        ----------------             ---------------- ---------------
Doe John    WaitingForJobPickup 142.6 MB (149,559,487 bytes)                  0

它将从头开始移动请求,这次您将不会得到 FailedOther 停止在 95% 的状态。

选项 2:恢复现有邮箱移动请求

运行命令以恢复现有邮箱移动请求。

[PS] C:\>Get-MoveRequest -Identity "Doe, John" | Set-MoveRequest -BadItemLimit 200 -AcceptLargeDataLoss
WARNING: When an item can't be read from the source database or it can't be written to the destination database, it
will be considered corrupted. By specifying a non-zero BadItemLimit, you are requesting Exchange not copy such items to
the destination mailbox. At move completion, these corrupted items will not be available at the destination mailbox.

[PS] C:\>Get-MoveRequest -Identity "Doe, John" | Resume-MoveRequest

现在它将恢复移动请求。请注意,运行第二个命令时可能会出现错误。它将显示输出:您无法修改请求“John Doe”,因为它已经完成。这意味着在您运行第一个命令后邮箱已经被移动。

验证移动请求

验证移动请求是否正在处理或已完成。

[PS] C:\>Get-MoveRequest | Get-MoveRequestStatistics

DisplayName StatusDetail    TotalMailboxSize                TotalArchiveSize PercentComplete
----------- ------------    ----------------                ---------------- ---------------
Neal Donna  CopyingMessages 56.97 GB (61,167,145,401 bytes)                  92             
Fox Marvin  CopyingMessages 93,93 GB (100,857,634,368 bytes)                 90
Doe John    Completed       23,17 GB (24,881,934,963 bytes)                  100

看一下第三行。

状态详细信息:已完成
完成百分比:100%

最后的想法

您了解了为什么在 Exchange Server 中 FailedOther 停止在 95% 处。有多种方法可以解决 Exchange 迁移中的 FailedOther 95% 状态。使用本文中显示的命令,您可以继续操作。

您喜欢这篇文章吗?您可能还喜欢检查 Exchange 健康邮箱。不要忘记关注我们并分享这篇文章。

您需要 登录账户 后才能发表评论

取消回复欢迎 发表评论:

关灯