【问题标题】:recover Items in a users online archive from there recoverable items从那里恢复用户在线存档中的项目可恢复项目
【发布时间】:2021-09-07 09:37:51
【问题描述】:

作为交换 365 有没有办法从用户的可恢复项目中恢复用户在线存档中的项目?我知道邮箱我可以使用 PowerShell 命令Restore-RecoverableItems 一旦我连接到交换在线 Powershell。我不知道在线存档中是否有类似的命令可以执行此操作。

【问题讨论】:

    标签: powershell email office365 exchange-server


    【解决方案1】:

    最终联系了 MS,一旦您拥有在线存档的 GUID,您就可以使用 Restore-RecoverableItems 命令。为了获取我使用 powershell 的 GUID

    Get-Mailbox -RecipientTypeDetails Usermailbox | Select Name,ArchiveGuid
    

    我将 ARchiveGuid 放入一个变量中,然后针对恢复运行该变量

    Restore-RecoverableItems -Identity "$GuidSource" -ResultSize "unlimited" -SourceFolder RecoverableItems  -FilterItemType Ipm.Note  -FilterStartTime "6/4/1989 01:23:00"
    

    希望这可以帮助遇到此问题的其他人。

    【讨论】:

      猜你喜欢
      • 2012-08-08
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2011-11-22
      • 2012-03-07
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多