--- title: "Disable-VBRTapeProtection" description: "This cmdlet disables protection that was previously enabled for tapes. You can disable protection of tapes that are both online or offline. When you disable protection, the tape retention period returns to media pool settings." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/disable-vbrtapeprotection.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Tape Devices > Managing Tapes > Disable-VBRTapeProtection" dateModified: "2026-08-19" --- # Disable-VBRTapeProtection ## Short Description Disables protection set for tapes. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Disable-VBRTapeProtection -Medium [-PassThru] [] ``` ## Detailed Description This cmdlet disables protection that was previously enabled for tapes. You can disable protection of tapes that are both online or offline. When you disable protection, the tape retention period returns to media pool settings. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Medium

Specifies the array of protected tapes. The cmdlet will disable protection for these tapes.

Accepts the VBRTapeMedium object, GUID or string type. To get this object, run the Get-VBRTapeMedium cmdlet.

VBRTapeMedium[]

True

Named

True (ByPropertyName, ByValue)

PassThru

Defines that the command returns the output object to the Windows PowerShell console.

SwitchParameter

False

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 [`VBRTapeMedium[]`](vbrtapemedium.md) ## Examples ::: example ### Turning off Tape Protection This example shows how to turn off protections for the tapes named `00140009` and `00140010`. ``` $tape = Get-VBRTapeMedium -Name "00140009","00140010" Disable-VBRTapeProtection -Medium $tape ``` Perform the following steps: 1. Run the [`Get-VBRTapeMedium`](get-vbrtapemedium.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$tape` variable. 2. Run the `Disable-VBRTapeProtection` cmdlet. Set `$tape` variable as the `Medium` parameter value. ::: ## Related Commands [`Get-VBRTapeMedium`](get-vbrtapemedium.md)