Set-VBRUploadStreamsConfiguration
Short Description
Modifies data transfer settings for job sessions.
Platform: VMware, Hyper-V
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Set-VBRUploadStreamsConfiguration -Configuration <VBRUploadStreamsConfiguration> [-Enable] [-StreamCount <Int32>] [-PassThru] [<CommonParameters>] |
Detailed Description
This cmdlet modifies existing data transfer settings for job sessions.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Configuration |
Specifies data transfer settings for job sessions. The cmdlet will modify these settings.
Accepts the |
|
True |
Named |
True (ByValue) |
|
Enable |
Enables the multithreaded data transfer option if it is disabled. |
|
False |
Named |
False |
|
PassThru |
Defines that the command returns the output object to the Windows PowerShell console. |
|
False |
Named |
False |
|
StreamCount |
Specifies a number of TCP/IP connections per job session. |
|
False |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
VBRUploadStreamsConfiguration
Examples
Modifying Data Transfer Settings to Change Number of TCP/IP Connections
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.
|
$transfersettings = Get-VBRUploadStreamsConfiguration Set-VBRUploadStreamsConfiguration -Configuration $transfersettings -StreamCount 7 -PassThru Enabled StreamCount ------- ----------- True 7 |
Perform the following steps:
- Run the
Get-VBRUploadStreamsConfigurationReturns details on data transfer settings for job sessions. cmdlet. Save the result to the$transfersettingsvariable. - Run the
Set-VBRUploadStreamsConfigurationcmdlet. Set the$transfersettingsvariable as theConfigurationparameter value. Specify theStreamCountparameter value. Provide thePassThruparameter.
Related Commands
Get-VBRUploadStreamsConfigurationReturns details on data transfer settings for job sessions.