Mailboxdatabasecopy

mailboxdatabasecopy is a PowerShell cmdlet used to copy a mailbox database from one Exchange server to another. Here's a brief overview of the cmdlet:

Syntax:

Get-MailboxDatabase -Identity <SourceDatabase> | New-MailboxDatabaseCopy -MailboxDatabase <TargetDatabase> -CopyPriority High

Parameters:

Example:

To copy the mailbox database "DB01" from the source Exchange server "EX01" to the target Exchange server "EX02", you would use the following command:

Get-MailboxDatabase -Identity "DB01" -Server "EX01" | New-MailboxDatabaseCopy -MailboxDatabase "DB01" -Server "EX02" -CopyPriority High

Notes: