Measure-VBOOrganizationFullBackupSize

Short Description

Measures a size of an organization backup.

In Veeam Backup for Microsoft 365 7.0, this cmdlet is obsolete. It still works in Veeam Backup for Microsoft 365 7.0 but may not be supported in the next versions of Veeam Backup for Microsoft 365.

You cannot use this cmdlet for organizations added using Azure AD 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

Accept Wildcard Characters

Organization

Specifies an organization whose backup you want to measure.

Accepts the VBOOrganization object.

To get this object, run the Get-VBOOrganization cmdlet.

True

Named

False

False

Proxy

Specifies a backup proxy which will be used to render the size of the backup.

This parameter is optional. If no backup proxy is specified, the Measure-VBOOrganizationFullBackupSize cmdlet will use the default backup proxy.

Accepts the VBOProxy object.

To get this object, run the Get-VBOProxy cmdlet.

False

Named

False

False

Mailbox

Defines that the cmdlet will enable the Mailbox processing option for the measured organization backup.

SwitchParameter

False

Named

False

False

ArchiveMailbox

Defines that the cmdlet will enable the ArchiveMailbox processing option for the measured organization backup.

SwitchParameter

False

Named

False

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.

SwitchParameter

False

Named

False

False

OneDrive

Defines that the cmdlet will enable the OneDrive processing option for the measured organization backup.

SwitchParameter

False

Named

False

False

PersonalSite

Defines that the enabled Site processing option will include Personal Sites for the measured organization backup.

SwitchParameter

False

Named

False

False

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.

Examples

Measure-VBOOrganizationFullBackupSizeExample 1. 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:

  1. Run the Get-VBOOrganization cmdlet. Set Columbus as the Name parameter value. Save the result to the $org variable.
  2. Run the Measure-VBOOrganizationFullBackupSize cmdlet. Set the $org as the Organization parameter value.

Related Commands

Get-VBOOrganization