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

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Id

Specifies an array of file share backup session IDs. The cmdlet will return file share backup sessions with these IDs.

Guid[]

True

Named

False

Name

Specifies an array of file backup jobs. The cmdlet will return backup sessions of the file backup jobs with these names.

Note: Veeam Backup & Replication adds (Full) at the end of the job name for full backup sessions. Depending on the type of the backup session you may specify the job name in one of the following ways:

  • To get incremental backup sessions, specify the job name as it was specified when creating the job.
  • To get full backup sessions, add (Full) at the end of the Name parameter.
  • To get both full and incremental backup sessions for the job, add * at the end of the Name parameter.

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 [`VBRNASBackupSession`](vbrunstructuredbackupsession.md) ## Examples ::: example ### Example 1. Getting All Backup Sessions of File Backup Job This command returns all backup sessions for the `New backup session` file backup job. ``` Get-VBRNASBackupSession -Name "New backup session*" ``` :::