2019년 2월 20일 수요일

Windows Exchange Server - Cancel PST command

<Windows Exchange Server - Cancel PST command>


This command cancels when extracting PST.

Get-MailboxExportRequest -Status InProgress | Suspend-MailboxExportRequest
This means that the extraction is in progress and stops for a while.

To see if it has been canceled:
Get-MailboxExportRequest 

To delete a file after it has stopped
Get-MailboxExportRequest | where {$_.status -eq "Suspend"}| Remove-MailboxExportRequest
This means to delete the Suspend situation.

댓글 없음:

댓글 쓰기