$user = "[email protected]" $mdb = "maildbname" #迁移[email protected]的邮箱到邮箱数据库maildbname New-MoveRequest -Identity $user -TargetDatabase $mdb #查看用户邮箱 $user 迁移状态 Get-MoveRequestStatistics -Identity $user #删除已迁移完成的 迁移请求 Get-MoveRequest -MoveStatus Completed | Remove-MoveRequest -Confirm:$false #获取未迁移完成的 迁移请求 Get-MoveRequest | ? {$_.Status -ne "Completed"} #删除用户 $user 的迁移请求 Get-MoveRequest $user | Remove-MoveRequest
标签:tat,Get,Exchange,MoveRequest,邮箱,迁移,user From: https://www.cnblogs.com/dreamer-fish/p/16661230.html