Syntax
Get-EmcMailboxDatabaseCopyStatus [-MailboxDatabaseCopy] <MailboxDatabaseCopy> [-Refresh] [-Silent] [<CommonParameters>]
Get-EmcMailboxDatabaseCopyStatus [-MailboxServer] <MailboxServer> [-Refresh] [-Silent] [<CommonParameters>]
Parameters
-MailboxDatabaseCopy <MailboxDatabaseCopy>
Attributes: Required, Position: 1
Specifies the mailbox database copy object from which to retrieve mailbox database information.
-MailboxServer <MailboxServer>
Attributes: Required, Position: 1
Specifies the name of the mailbox server from which to retrieve mailbox database information.
-Refresh <SwitchParameter>
Attributes: Optional, Position: named
If specified, performs a full refresh of the components related to the mailbox database copy before retrieving the status. This will take longer to complete, but ensures that the data is up to date.
-Silent <SwitchParameter>
Attributes: Optional, Position: named
Turns off all the informational and verbose messages. However, it still displays errors.
<CommonParameters>
This cmdlet supports these common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, and OutVariable. Type get-help about_commonparameters for more details.
Examples
-------------- Example 1 --------------
C:\PS>$copies = Get-EmcMailboxDatabaseCopy MBDB1
C:\PS>Get-EmcMailboxDatabaseCopyStatus -MailboxDatabaseCopy $copies[0]
This example gets the status of all database copies on the MBDB1 mailbox server.
-------------- Example 2 --------------
C:\PS>$ms = Get-EmcMailboxServer MS1
C:\PS>Get-EmcMailboxDatabaseCopyStatus -MailboxServer $ms
This example gets the status of all database copies on the MS1 mailbox server.