Mount-EmcMailboxDatabase

Mounts a mailbox database on a mailbox database server.

 

Syntax

Mount-EmcMailboxDatabase -MailboxDatabase <MailboxDatabase> [-Force] [-Silent] [-WhatIf] [-Confirm] [<CommonParameters>]

 

Parameters

-MailboxDatabase <MailboxDatabase>

Attributes: Required, Position: named

Represents a specific database which needs to be mounted.

 

-Force <SwitchParameter>

Attributes: Optional, Position: named

Allows the cmdlet to continue without asking for user confirmation.

 

-Silent <SwitchParameter>

Attributes: Optional, Position: named

Turns off all the informational and verbose messages. However, it still displays errors.

 

-WhatIf <SwitchParameter>

Attributes: Optional, Position: named

Describes what would happen if you executed the command without actually executing the command.

 

-Confirm <SwitchParameter

Attributes: Optional, Position: named

Prompts you for confirmation before executing the command.

 

<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>$db = Get-EmcMailboxDatabase MBDB1

C:\PS>$db.Mounted

False

C:\PS>Mount-EmcMailboxDatabase -MailboxDatabase $db

This example mounts the MBDB1 mailbox database.