Get-VBOEntityData
Short Description
Returns a user, group, site, team or organization backed-up data.
Syntax
This cmdlet provides the following parameter sets:
-
ByType (Default)Get-VBOEntityData -Repository <VBORepository> -Type <VBOEntityDataType> [-Name <String>]
[-Organization <VBOOrganization>] [<CommonParameters>]
-
ByOrganizationGet-VBOEntityData -Repository <VBORepository> -Organization <VBOOrganization> [<CommonParameters>]
-
ByUserGet-VBOEntityData -Repository <VBORepository> -User <VBOOrganizationUser> [<CommonParameters>]
-
ByGroupGet-VBOEntityData -Repository <VBORepository> -Group <VBOOrganizationGroup> [<CommonParameters>]
-
BySiteGet-VBOEntityData -Repository <VBORepository> -Site <VBOOrganizationSite> [<CommonParameters>]
-
ByTeamGet-VBOEntityData -Repository <VBORepository> -Team <VBOOrganizationTeam> [<CommonParameters>]
-
ByRestorePointGet-VBOEntityData -Type <VBOEntityDataType> [-Name <String>] -RestorePoint <VBORestorePoint> [<CommonParameters>]
Detailed Description
This cmdlet returns a representation entity of the backed-up data of an organization user, organization group, organization site, organization team, or an organization itself. You can use it with the Move-VBOEntityDataMoves organization data from a JET-based backup repository to another JET-based backup repository or object storage repository. or Remove-VBOEntityDataRemoves an organization entity data from a backup repository including an object storage repository that was specified as a target for backup copy jobs. cmdlets.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Group |
Specifies an organization group. The cmdlet will return backed-up data for this group.
Accepts the
To get this object, run the |
True |
Named |
False |
|
|
Name |
Specifies a name filter for the searched data. The cmdlet will return a collection of data with the specified name. |
|
False |
Named |
False |
|
Organization |
Specifies a Microsoft organization. The cmdlet will return backed-up data for this organization.
Accepts the
To get this object, run the |
False |
Named |
False |
|
|
Repository |
Specifies a backup repository. The cmdlet will return backed-up data from this backup repository.
Accepts the
To get this object, run the |
True |
Named |
True (ByValue) |
|
|
RestorePoint |
Specifies a restore point stored in Veeam Backup for Microsoft 365. The cmdlet will return backed-up data from this restore point.
Accepts the
To get this object, run the |
True |
Named |
False |
|
|
Site |
Specifies a SharePoint site. The cmdlet will return backed-up data for this site.
Accepts the
To get this object, run the |
True |
Named |
False |
|
|
Team |
Specifies an organization team. The cmdlet will return backed-up data for this team.
Accepts the
To get this object, run the |
True |
Named |
False |
|
|
Type |
Specifies a type of the entity data. The cmdlet will return backed-up data for the entity of this type. You can select the following entity data types:
Note: The |
|
True |
Named |
False |
|
User |
Specifies an organization user. The cmdlet will return backed-up data for this user.
Accepts the
To get this object, run the |
True |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About Common Parameters section of Microsoft Learn.
Examples
Getting Backed-Up Data of Specific User
This example shows how to get backed-up data of a user with the name Chuck Brown.
|
$repository = Get-VBORepository -Name "ABC Daily Backup" Get-VBOEntityData -Repository $repository -Type User -Name "Chuck Brown" |
Perform the following steps:
- Run the
Get-VBORepositoryReturns backup repositories. cmdlet with theNameparameter to get the backup repository. Save the result to the$repositoryvariable. - Run the
Get-VBOEntityDatacmdlet with the$repositoryvariable andNameparameter to get backed-up data of a user with the name Chuck Brown.
Related Commands
Move-VBOEntityDataMoves organization data from a JET-based backup repository to another JET-based backup repository or object storage repository.Remove-VBOEntityDataRemoves an organization entity data from a backup repository including an object storage repository that was specified as a target for backup copy jobs.Get-VBORepositoryReturns backup repositories.Get-VBOOrganizationUserReturns organization users.Get-VBOOrganizationTeamReturns organization teams.Get-VBOOrganizationSiteReturns organization sites.Get-VBORestorePointReturns restore points.Get-VBOOrganizationReturns Microsoft organizations added to the Veeam Backup for Microsoft 365 infrastructure.Get-VBOOrganizationGroupReturns organization groups.