This is an archive version of the document. To get the most up-to-date information, see the current version.

Set-VBRUploadStreamsConfiguration

Short Description

Modifies data transfer settings for job sessions.

Applies to

Platform: VMware, Hyper-V

Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License

Syntax

Set-VBRUploadStreamsConfiguration -Configuration <VBRUploadStreamsConfiguration> [-Enable [<SwitchParameter>]][-StreamCount <Int32>] [-PassThru [<SwitchParameter>]] [<CommonParameters>]

Detailed Description

This cmdlet modifies existing data transfer settings for job sessions.

Parameters

Parameter

Description

Required

Position

Accept
Pipeline
Input

Accept
Wildcard
Characters

Configuration

Specifies data transfer settings for job sessions. The cmdlet will modify these settings.

Accepts the VBRUploadStreamsConfiguration type.

True

Named

False

False

Enable

Enables the multithreaded data transfer option if it is disabled.

False

Named

False

False

StreamCount

Specifies a number of TCP/IP connections per job session.

False

Named

False

False

PassThru

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

False

Named

False

False

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.

Example

This example shows how to modify data transfer settings and change a number of TCP/IP connections per job session. The cmdlet will return details about the modified data transfer settings.

  1. Run Get-VBRUploadStreamsConfiguration to get data transfer settings that you want to modify. Save the result to the $transfersettings variable.
  2. Run Set-VBRUploadStreamsConfiguration with the $transfersettings variable. Set the value for the StreamCount parameter.

$transfersettings = Get-VBRUploadStreamsConfiguration

Set-VBRUploadStreamsConfiguration -Configuration $transfersettings -StreamCount 7 -PassThru

                                 Enabled                                                 StreamCount

                                 -------                                                 -----------

                                    True                                                           7

Related Commands

Get-VBRUploadStreamsConfiguration