--- title: "Get-VBRNASBackupJob (obsolete)" description: "This cmdlet returns file backup jobs." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrnasbackupjob.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Obsolete Cmdlets > Get-VBRNASBackupJob (obsolete)" dateModified: "2026-08-19" --- # Get-VBRNASBackupJob ## Short Description Returns file backup jobs. ::: note This cmdlet is obsolete. Run the [`Get-VBRUnstructuredBackupJob`](get-vbrunstructuredbackupjob.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 file backup jobs. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies an ID of a file backup job. The cmdlet will return an array of jobs with the specified ID.

Guid[]

True

Named

False

Name

Specifies a name of a file backup job. The cmdlet will return an array of jobs with the specified name.

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 `VBRNASBackupJob` object that contains settings of file backup jobs. ## Examples ::: example ### Example 1. Getting all File Backup Jobs This command returns all file backup jobs that are added to the Veeam Backup & Replication infrastructure. ``` Get-VBRNASBackupJob ``` ::: ::: example ### Example 2. Getting File Backup Job by Name This command returns the `SMB Backup` file backup job. ``` Get-VBRNASBackupJob -Name "SMB Backup" ``` ::: ::: example ### Example 3. Getting File Backup Job by ID This command returns the `0789b522-c02c-4d05-a619-dee26520495d` file backup job. ``` Get-VBRNASBackupJob -ID "0789b522-c02c-4d05-a619-dee26520495d" ``` :::