--- title: "Get-VBRUnstructuredBackup" description: "Returns backup files created by file backup jobs and object storage backup jobs. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet provides the following parameter sets: This cmdlet returns backup files creat" canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrunstructuredbackup.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Unstructured Data Backup > Managing Unstructured Data Backups > Get-VBRUnstructuredBackup" dateModified: "2026-08-19" --- # Get-VBRUnstructuredBackup ## Short Description Returns backup files created by file backup jobs and object storage backup jobs. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax This cmdlet provides the following parameter sets: ## Detailed Description This cmdlet returns backup files created by file backup jobs and object storage backup jobs. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies an array of IDs for file backup jobs and object storage backup jobs. The cmdlet will return an array of backup files that are created by these jobs.

Guid[]

True

Named

False

Name

Specifies an array of names for file backup jobs and object storage backup jobs. The cmdlet will return an array of backup files that are created by these jobs.

String[]

True

Named

False

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Output Object [`VBRUnstructuredBackup`](vbrunstructuredbackup.md) ## Examples ::: example ### Example 1. Getting Backup Files Created by File Backup Job This command gets backup files that are created by the `Reports backup` file backup job. The cmdlet output will contain settings of the backup file created by the `Reports backup` file backup job. ``` Get-VBRUnstructuredBackup -Name "Reports backup" ``` ::: ::: example ### Example 2. Getting Backup Files by Object Storage Backup Job This command gets backup files that are created by the `e5559d89-ca63-48dc-a53b-d9c54b7f2482` object storage backup job. The cmdlet output will contain settings of the backup file crated by the `e5559d89-ca63-48dc-a53b-d9c54b7f2482` object storage backup job. ``` Get-VBRUnstructuredBackup -ID e5559d89-ca63-48dc-a53b-d9c54b7f2482 ``` :::