This is an archive version of the document. To get the most up-to-date information, see the current version.

Get-VBOEntityData

Short Description

Returns a user, group, site, team or organization backed-up data.

Syntax

Get-VBOEntityData -Type <VBOEntityDataType> {User | Group | Site | Team | Organization} -Repository <VBORepository> [-Name <string>]  [<CommonParameters>]

Detailed Description

This cmdlet returns a representation entity of the backed-up data of an organization user, organization group, organization site or an organization itself. You can use it with the Move-VBOEntityData or Remove-VBOEntityDatacmdlets.

Parameters

Parameter

Description

Required

Position

Accept Pipeline Input

Accept Wildcard Characters

Type

Indicates one of the following types of the entity data:

  • User
  • Group
  • Site
  • Team
  • Organization

True

Named

False

False

Name

Specifies a name filter for the searched data. This cmdlet will return a collection of the data with the specified name.

False

Named

False

True

Repository

Specifies the name of the repository. This cmdlet will return data from this repository.

True

Named

True (ByValue)

False

<CommonParameters>

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

Examples

Example 1

This example shows how to get data of an organization user with the name "Chuck Brown".

  1. Run the Get-VBORepository cmdlet with the Name parameter to get the repository. Save the result to the $repository variable.
  2. Run the Get-VBOEntityData cmdlet with the $repository variable and Name parameter to get data of a user with the name "Chuck Brown".

$repository = Get-VBORepository -Name "ABC Daily Backup"

Get-VBOEntityData -Type User -Repository $repository -Name "Chuck Brown"

Related Commands

Get-VBORepository