--- title: "Get-VBRPreferredNetwork" description: "This cmdlet returns an array of preferred networks created for the backup infrastructure." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrpreferrednetwork.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Network Traffic Management > Get-VBRPreferredNetwork" dateModified: "2026-08-19" --- # Get-VBRPreferredNetwork ## Short Description Returns preferred networks. **Platform**: VMware, Hyper-V **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRPreferredNetwork [] ``` ## Detailed Description This cmdlet returns an array of preferred networks created for the backup infrastructure. ## 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 [`VBRPreferredNetwork`](vbrpreferrednetwork.md) ## Examples ::: example ### Getting Preferred Networks This command returns preferred networks created for the backup infrastructure. ``` Get-VBRPreferredNetwork IpAddress SubnetMask CIDRNotation 192.168.0.1 255.255.255.255 192.168.0.1/32 123.0.0.0 255.0.0.0 123.0.0.0/8 ``` :::