Set-VBRUploadStreamsConfiguration
Short Description
Modifies data transfer settings for job sessions.
Applies to
Platform: VMware, Hyper-V
Product Edition: Standard, Enterprise, Enterprise Plus
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 | Accept |
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 about common parameters, see http://go.microsoft.com/fwlink/p/?LinkID=113216.
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.
- Run Get-VBRUploadStreamsConfiguration to get data transfer settings that you want to modify. Save the result to the $transfersettings variable.
- 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