Get-MailboxRestoreRequest

Xavier Mustin

Administrator
Staff member
#1
This example returns the status of the in-progress and queued restore request with the identity ayla\MailboxRestore.
Code:
Get-MailboxRestoreRequest -Identity "ayla\MailboxRestore"

This example returns the status of in-progress and queued restore requests that are being restored to the mailbox database MBD01.
Code:
Get-MailboxRestoreRequest -RequestQueue MBD01
This example returns all restore requests that have the name RestoreToMBD01 where the restore request has been suspended.
Code:
Get-MailboxRestoreRequest -Name "RestoreToMBD01" -Suspend $true
 
Haut