在最初从Google Apps迁移到Office 365失败后,我使用Powershell删除邮箱中的所有项目并开始另一次同步。
Search-Mailbox -Identity "identity" -DeleteContent -force
Search-mailbox -identity "identity" -SearchDumpsterOnly -DeleteContent
不幸的是,这会将所有项目移动到“Purges”文件夹中,但我还没有找到清除清除的方法。由于项目位于清除状态,因此我无法在Google Apps之间正确同步。
理想情况下,我想完全擦除邮箱而不删除用户并重新开始或至少找到清除purges文件夹的方法。 到目前为止,微软最好的回应是等待30天才能清除清除....
我确实尝试将保留期设置为大约一天前,但到目前为止没有效果:
Set-Mailbox -Identity "mailbox" -RetainDeletedItemsFor 0
答案 0 :(得分:2)
对于任何感兴趣的人,想出如何删除清除:
将保留期设为0:
Set-Mailbox -Identity "identity" -RetainDeletedItemsFor 0
关闭项目恢复:
Set-Mailbox -Identity "identity" -SingleItemRecoveryEnabled $false
等待> 60分钟
执行命令
Start-ManagedFolderAssistant
这将强制保留策略运行并清除清除中的所有电子邮件