--- title: "Get-VBRNASBackup (obsolete)" description: "Returns backup files created by the file backup job. This cmdlet is obsolete. Run the Get-VBRUnstructuredBackupReturns backup files created by file backup jobs and object storage backup jobs. cmdlet instead." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrnasbackup.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Obsolete Cmdlets > Get-VBRNASBackup (obsolete)" dateModified: "2026-08-19" --- # Get-VBRNASBackup ## Short Description Returns backup files created by the file backup job. ::: note This cmdlet is obsolete. Run the [`Get-VBRUnstructuredBackup`](get-vbrunstructuredbackup.md) cmdlet instead. ::: **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 the file backup job. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies an array of the file backup IDs. The cmdlet will return an array of backup files that are created by this file backup.

Guid[]

True

Named

False

Name

Specifies a name of the file backup job. The cmdlet will return an array of backup files that are created by this file backup job.

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 The cmdlet returns the `VBRNASBackup` object that contains backup files created by the file backup job. ## Examples ::: example ### Example 1. Getting All Backup Files This command gets all backup files that are created by the file backup jobs. The cmdlet output will contain details of these backup files. ``` Get-VBRNASBackup Id : 86f24760-ea7e-475a-88ab-1b328e3694f4 Name : Reports backup JobId : d9fa21cf-4917-48b8-ad81-53a997923c5f CreationTime : 8/26/2019 8:11:50 AM LastRestorePointCreationTime : 8/26/2019 8:26:19 AM IsEncrypted : False Id : e5559d89-ca63-48dc-a53b-d9c54b7f2482 Name : Transaction backups JobId : d4d289aa-eff8-4983-a5e3-5fd2c7ff7500 CreationTime : 8/26/2019 8:29:05 AM LastRestorePointCreationTime : 8/26/2019 8:29:12 AM IsEncrypted : False ``` ::: ::: example ### Example 2. Getting Backup Files by Name 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-VBRNASBackup -Name "Reports backup" Id : 86f24760-ea7e-475a-88ab-1b328e3694f4 Name : Reports backup JobId : d9fa21cf-4917-48b8-ad81-53a997923c5f CreationTime : 8/26/2019 8:11:50 AM LastRestorePointCreationTime : 8/26/2019 8:26:19 AM IsEncrypted : Falseget-vbohelp ``` ::: ::: example ### Example 3. Getting Backup Files by ID This command gets backup files that are created by the `e5559d89-ca63-48dc-a53b-d9c54b7f2482` file backup job. The cmdlet output will contain settings of the backup file crated by the `e5559d89-ca63-48dc-a53b-d9c54b7f2482` file backup job. ``` Get-VBRNASBackup -ID e5559d89-ca63-48dc-a53b-d9c54b7f2482 Id : e5559d89-ca63-48dc-a53b-d9c54b7f2482 Name : Transaction backups JobId : d4d289aa-eff8-4983-a5e3-5fd2c7ff7500 CreationTime : 8/26/2019 8:29:05 AM LastRestorePointCreationTime : 8/26/2019 8:29:12 AM IsEncrypted : False ``` :::