--- title: "Get-VBRTapeJob" description: "Returns tape jobs. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet returns tape jobs created on this Veeam backup server. You can get backup to tape jobs, file to tape and object to tape jobs." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrtapejob.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Tape Devices > Tape Jobs > Get-VBRTapeJob" dateModified: "2026-08-19" --- # Get-VBRTapeJob ## Short Description Returns tape jobs. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRTapeJob [-Name ] [] ``` ## Detailed Description This cmdlet returns tape jobs created on this Veeam backup server. You can get backup to tape jobs, file to tape and object to tape jobs. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Name

Specifies the array of tape job names. The cmdlet will return tape jobs with these names.

String[]

False

Named

True (ByPropertyName, ByValue)

`` 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 - [`VBRBackupToTapeJob`](vbrbackuptotapejob.md) - [`VBRFileToTapeJob`](vbrfiletotapejob.md) - [`VBRObjectToTapeJob`](vbrobjecttotapejob.md) ## Examples ::: example ### Getting Tape Job by Name This command returns the tape job named `Daily WebApp Backup`. ``` Get-VBRTapeJob -Name "Daily WebApp Backup" ``` :::