积极答复者
邮箱归档邮件问题

问题
答案
-
你好,
尝试使用下面的指令重新连接被禁用的归档邮箱:
1.查看当前坏境中所有禁用的归档邮箱,找到对应邮箱的归档邮箱:
Get-MailboxStatistics | Where {($_.DisconnectDate -ne $null) -and ($_.IsArchiveMailbox -eq $true)} | Format-List
2.通过上面指令找到的归档邮箱的GUID,将其存档邮箱连接到主邮箱:
Enable-Mailbox -ArchiveGuid "GUID" -ArchiveDatabase "DBName" -Identity "UserName"
具体可以参考:
在 Exchange 2013 中管理就地存档 -- 连接内部部署存档
Best Regards,
Niko Cheng
Please remember to mark the replies as answers if they helped.
If you have feedback for TechNet Subscriber Support, contact tnsf@microsoft.com.
- 已编辑 Niko.ChengModerator 2017年12月20日 9:17
- 已标记为答案 techboyonline 2017年12月21日 12:21
-
你好,
这个还是需要按照我最刚开始给你的命令,去找到被禁用的存档邮箱,然后将其连接到邮箱。
可能由于最近刚禁用,被禁用的存档邮箱还没刷新出来,你可以通过下面的指令查看之前被禁用的存档邮箱的GUID:
Get-Mailbox UserName -Archive |fl DisabledArchiveGuid
另外方法就是看是否有备份,如果平时有备份,那么可以尝试从最近的一次备份中恢复存档邮箱。Best Regards,
Niko Cheng
Please remember to mark the replies as answers if they helped.
If you have feedback for TechNet Subscriber Support, contact tnsf@microsoft.com.- 已标记为答案 techboyonline 2017年12月27日 11:12
全部回复
-
你好,
尝试使用下面的指令重新连接被禁用的归档邮箱:
1.查看当前坏境中所有禁用的归档邮箱,找到对应邮箱的归档邮箱:
Get-MailboxStatistics | Where {($_.DisconnectDate -ne $null) -and ($_.IsArchiveMailbox -eq $true)} | Format-List
2.通过上面指令找到的归档邮箱的GUID,将其存档邮箱连接到主邮箱:
Enable-Mailbox -ArchiveGuid "GUID" -ArchiveDatabase "DBName" -Identity "UserName"
具体可以参考:
在 Exchange 2013 中管理就地存档 -- 连接内部部署存档
Best Regards,
Niko Cheng
Please remember to mark the replies as answers if they helped.
If you have feedback for TechNet Subscriber Support, contact tnsf@microsoft.com.
- 已编辑 Niko.ChengModerator 2017年12月20日 9:17
- 已标记为答案 techboyonline 2017年12月21日 12:21
-
你好,
一般来说,按照上面的方法恢复存档邮箱,是不会丢失数据的。
你是不是在恢复之前,有对该用户重新启用存档?
如果对用户禁用存档,然后对该相同用户启用存档,则用户将获取一个新存档。新存档将不包含用户已断开连接的存档中的数据。
Best Regards,
Niko Cheng
Please remember to mark the replies as answers if they helped.
If you have feedback for TechNet Subscriber Support, contact tnsf@microsoft.com. -
你好,
这个还是需要按照我最刚开始给你的命令,去找到被禁用的存档邮箱,然后将其连接到邮箱。
可能由于最近刚禁用,被禁用的存档邮箱还没刷新出来,你可以通过下面的指令查看之前被禁用的存档邮箱的GUID:
Get-Mailbox UserName -Archive |fl DisabledArchiveGuid
另外方法就是看是否有备份,如果平时有备份,那么可以尝试从最近的一次备份中恢复存档邮箱。Best Regards,
Niko Cheng
Please remember to mark the replies as answers if they helped.
If you have feedback for TechNet Subscriber Support, contact tnsf@microsoft.com.- 已标记为答案 techboyonline 2017年12月27日 11:12