--- title: "Set-VBRTapeServer" description: "This cmdlet modifies tape server that was created before. To modify settings, specify new values for the necessary parameters. The cmdlet will overwrite the previous parameter values with new values." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/set-vbrtapeserver.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Tape Devices > Tape Servers > Set-VBRTapeServer" dateModified: "2026-08-19" --- # Set-VBRTapeServer ## Short Description Modifies tape servers. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Set-VBRTapeServer [-Description ] -TapeServer [-PassThru] [] ``` ## Detailed Description This cmdlet modifies tape server that was created before. ::: note To modify settings, specify new values for the necessary parameters. The cmdlet will overwrite the previous parameter values with new values. The parameters that you omit will remain unchanged. ::: ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Description

Specifies the new description you want to apply to the tape server.

String

False

Named

False

PassThru

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

SwitchParameter

False

Named

False

TapeServer

Specifies the tape server you want to modify.

Accepts the VBRTapeServer object. To get this object, run the Get-VBRTapeServer cmdlet.

VBRTapeServer

True

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 [`VBRTapeServer`](vbrtapeserver.md) ## Examples ::: example ### Example 1. Modifying Description of Tape Server [Using Variable] This example shows how to modify the description of the `Sydney_Tape_Server` tape server. ``` $tapeserver = Get-VBRTapeServer -Name "Sydney_Tape_Server" Set-VBRTapeServer -TapeServer $tapeserver -Description "Sydney_Remote_Tape_Server" ``` Perform the following steps: 1. Run the [`Get-VBRServer`](get-vbrserver.md) cmdlet. Specify the `Name` parameter value. Save the result to the `$tapeserver` variable. 2. Run the `Set-VBRTapeServer` cmdlet. Set the `$tapeserver` variable as the `TapeServer` parameter value. Specify the `Description` parameter value. ::: ::: example ### Example 2. Modifying Description of Tape Server [Using Pipeline] This example shows how to modify the description of the `Sydney_Tape_Server` tape server. ``` Get-VBRTapeServer -Name "Sydney_Tape_Server" | Set-VBRTapeServer -Description "Sydney_Remote_Tape_Server" -PassThru ``` Perform the following steps: 1. Run the [`Get-VBRServer`](get-vbrserver.md) cmdlet. Specify the `Name` parameter value. 2. Pipe the cmdlet output to the `Set-VBRTapeServer` cmdlet. Specify the `Description` parameter value. Provide the `PassThru` parameter. ::: ## Related Commands [`Get-VBRTapeServer`](get-vbrtapeserver.md)