Measure-VBOOrganizationFullBackupSize
Short Description
Measures a size of an organization backup.
Note |
In Veeam Backup for Microsoft 365 8, this cmdlet became deprecated. It still works in Veeam Backup for Microsoft 365, but may not be supported in future versions of Veeam Backup for Microsoft 365. |
You cannot use this cmdlet for organizations added using Microsoft Entra applications and organizations for which backup of Microsoft Teams data is enabled.
Syntax
Measure-VBOOrganizationFullBackupSize -Organization <VBOOrganization> [-Proxy <VBOProxy>] [-Mailbox] [-ArchiveMailbox] [-Site] [-OneDrive] [-PersonalSite] [<CommonParameters>] |
Detailed Description
This cmdlet gets details on a size of a backed-up organization. You can use this details to find out how much space the backup of an organization will occupy on a backup repository.
Parameters
Parameter | Description | Type | Required | Position | Accept Pipeline Input |
---|---|---|---|---|---|
Organization | Specifies a Microsoft organization whose backup you want to measure. | Accepts the VBOOrganization object. To get this object, run the Get-VBOOrganization cmdlet. | True | Named | False |
Proxy | Specifies a backup proxy server which will be used to render the size of the backup. This parameter is optional. If a backup proxy server is not specified, the Measure-VBOOrganizationFullBackupSize cmdlet will use the default backup proxy server. | Accepts the VBOProxy object. To get this object, run the Get-VBOProxy cmdlet. | False | Named | False |
Mailbox | Defines that the cmdlet will enable the Mailbox processing option for the measured organization backup. Default: False | SwitchParameter | False | Named | False |
ArchiveMailbox | Defines that the cmdlet will enable the ArchiveMailbox processing option for the measured organization backup. Default: False | SwitchParameter | False | Named | False |
Site | Defines that the cmdlet will enable the Sites processing option for the measured organization backup. The enabled Site parameter does not include Personal Sites into the measured backup. Default: False | SwitchParameter | False | Named | False |
OneDrive | Defines that the cmdlet will enable the OneDrive processing option for the measured organization backup. Default: False | SwitchParameter | False | Named | False |
PersonalSite | Defines that the enabled Site processing option will include Personal Sites for the measured organization backup. Default: False | SwitchParameter | False | Named | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.
Example
Measuring Full Backup Size for Specific Organization
This example shows how to measure a full backup size for the Columbus organization.
$org = Get-VBOOrganization -Name "Columbus" Measure-VBOOrganizationFullBackupSize -Organization $org |
Perform the following steps:
- Run the Get-VBOOrganization cmdlet. Set Columbus as the Name parameter value. Save the result to the $org variable.
- Run the Measure-VBOOrganizationFullBackupSize cmdlet. Set the $org as the Organization parameter value.
Related Commands