Get-VBOMailboxProtectionReport
Short Description
Generates a data protection on Veeam Backup for Microsoft Office 365 user mailbox.
Syntax
Get-VBOMailboxProtectionReport -Path <String> -Format <VBOReportFormat> [-Organization <VBOOrganization>][<CommonParameters>] |
Detailed Description
This cmdlet generates a data protection report on Veeam Backup for Microsoft Office 365 user mailboxes. This report contains statistics on protected and unprotected users mailboxes.
Parameters
Parameter | Description | Required | Position | Accept | Accept |
Path | Specifies a path to the folder. The cmdlet will save a report to this folder. | True | Named | False | False |
Format | Specifies a format of the report. You can select the following types:
| True | Named | False | False |
Organization | Specifies an organization. The cmdlet will return a report on mailboxes from this organization. Accepts the VBOOrganization object. To get this object, run the Get-VBOOrganization cmdlet. | False | Named | False | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Example
This example shows how to generate a report for the ABC organization.
- Run the Get-VBOOrganization cmdlet. Save the result to the $org variable.
- Run the Get-VBOMailboxProtectionReport cmdlet. Specify the following settings:
- Set the $org variable as the Organization parameter value.
- Set the C:\tmp as the Path parameter value.
- Set the csv as the Format parameter value.
$org = Get-VBOOrganization -Name ABC Get-VBOMailboxProtectionReport -Path C:\tmp -Format csv -Organization $org |
Related Commands