This section shows how to perform Brick-Level backup with database availability group (DAG)
Brick-Level backup requires "Full Mailbox Access" permission for the user running OBM. Please refer to the following instruction for granting permission to the operating system account to be running the Brick-Level backup: For one specific mailbox Use the following procedure to grant access to Exchange 2003 / 2007 mailbox:
For mailboxes located within a specific mailbox store
Use the following procedure to grant access to Exchange 2003 / 2007 mailbox found on a specific mail store:
For mailboxes located within a specific server For Exchange 2003, please refer to the following instructions:
This account must be a member of the following groups in the Active Directory:
For Exchange 2007, please refer to the following instructions:
This account must be a member of the following groups:
Get-MailboxServer | Add-ADPermission -User "%USER%" -AccessRights GenericAll -ExtendedRights ms-exch-store-admin,receive-as,send-as -InheritanceType All
Example, to grant the permission for local account "system"
Get-MailboxServer | Add-ADPermission -User "system" -AccessRights GenericAll -ExtendedRights ms-exch-store-admin,receive-as,send-as -InheritanceType All
To show added permission for an AD account
Get-MailboxServer | Get-ADPermission -User "%USER%"
Example, to show added permission for local account "system"
Get-MailboxServer | Get-ADPermission -User "system"
To remove permission from an AD account
Get-MailboxServer | Remove-ADPermission -User "%USER%" -AccessRights GenericAll -ExtendedRights ms-exch-store-admin,receive-as,send-as -InheritanceType All
Example, to remove permission from local account "system"
Get-MailboxServer | Remove-ADPermission -User "minimal" -AccessRights GenericAll -ExtendedRights ms-exch-store-admin,receive-as,send-as -InheritanceType All
For Exchange Server 2010/DAG, please refer to the following instructions:
This account must be a member of the following groups:
Get-Mailbox | Add-MailboxPermission -User "%USER%" -AccessRights FullAccess
Example:
Get-Mailbox | Add-MailboxPermission -User "system" -AccessRights FullAccess
Other useful commands:
Remove permission from an AD account
Get-Mailbox | Remove-MailboxPermission -User "%USER%" -AccessRights FullAccess
Example:
Get-Mailbox | Remove-MailboxPermission -User "system" -AccessRights FullAccess
To view the mailbox permission of a user
Get-Mailbox | Get-MailboxPermission -User "%USER%"
Example:
Get-Mailbox | Get-MailboxPermission -User "SYSTEM"
For Exchange Server 2013/DAG, please refer to the following instructions:
This account must be a member of the following groups:
Get-Mailbox | Add-MailboxPermission -User "%USER%" -AccessRights FullAccess
Example:
Get-Mailbox | Add-MailboxPermission -User "system" -AccessRights FullAccess
Other useful commands:
Remove permission from an AD account
Get-Mailbox | Remove-MailboxPermission -User "%USER%" -AccessRights FullAccess
Example:
Get-Mailbox | Remove-MailboxPermission -User "system" -AccessRights FullAccess
To view the mailbox permission of a user
Get-Mailbox | Get-MailboxPermission -User "%USER%"
Example:
Get-Mailbox | Get-MailboxPermission -User "SYSTEM"
For details on how to troubleshoot for issue encountered when creating a mail level backup set or during backup, please refer to Section 1.4.