--- title: "Get-VBRUploadStreamsConfiguration" description: "This cmdlet returns the VBRUploadStreamsConfiguration object. This object contains the following details on data transfer settings for job sessions: State: specifies the state of the multithreaded data transfer option." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbruploadstreamsconfiguration.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Network Traffic Management > Get-VBRUploadStreamsConfiguration" dateModified: "2026-08-19" --- # Get-VBRUploadStreamsConfiguration ## Short Description Returns details on data transfer settings for job sessions. **Platform**: VMware, Hyper-V **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRUploadStreamsConfiguration [] ``` ## Detailed Description This cmdlet returns the `VBRUploadStreamsConfiguration` object. This object contains the following details on data transfer settings for job sessions: - `State`: specifies the state of the multithreaded data transfer option. It can be either enabled (`True`) or disabled (`False`). - `StreamCount`: specifies the number of TCP/IP connections per job session. ## Parameters `` 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 `VBRUploadStreamsConfiguration` ## Examples ::: example ### Getting Details on Data Transfer Settings This command returns the following details on data transfer settings for job sessions: - The multithreaded data transfer option is enabled. - The number of TCP/IP connections per job is set to five. ``` Get-VBRUploadStreamsConfiguration Enabled StreamCount ------- ----------- True 5 ``` :::