--- title: "Get-VBRDiscoveredComputerNetwork" description: "Returns network adapters of discovered computers with the Veeam CDP Agent Service installed. Product Edition: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet returns the VBRDiscoveredComputerNetwork object which " canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrdiscoveredcomputernetwork.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Continuous Data Protection (CDP) > Universal CDP Policy > Get-VBRDiscoveredComputerNetwork" dateModified: "2026-08-19" --- # Get-VBRDiscoveredComputerNetwork ## Short Description Returns network adapters of discovered computers with the Veeam CDP Agent Service installed. **Product Edition**: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRDiscoveredComputerNetwork -Computer [] ``` ## Detailed Description This cmdlet returns the `VBRDiscoveredComputerNetwork` object which contains network adapters of the discovered computer. The discovered computer must be added to a protection group and have the Veeam CDP Agent Service installed. The `VBRDiscoveredComputerNetwork` object can be used to configure the network mapping rules in a universal CDP policy. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Computer

Specifies the discovered computer added to a protection group and with the Veeam CDP Agent Service installed. The cmdlet will return the network adapter of this discovered computer.

Accepts the VBRDiscoveredComputer object. To get this object, run the Get-VBRDiscoveredComputer cmdlet.

VBRDiscoveredComputer

True

Named

True (ByPropertyName, ByValue)

`` 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 The cmdlet returns the `VBRDiscoveredComputerNetwork[]` object that contains network adapters of the discovered computer. ## Examples ::: example ### Getting Network Adapter of Discovered Computer This example shows how to get the network adapter of a discovered computer. ``` $computer = Get-VBRDiscoveredComputer | Where-Object { $_.Name -eq "serv01" } $adapters = Get-VBRDiscoveredComputerNetwork -Computer $computer $netAdapter = $adapters[0] ``` Perform the following steps: 1. Run the [`Get-VBRDiscoveredComputer`](get-vbrdiscoveredcomputer.md) cmdlet. Pipe the cmdlet output to the `Where-Object` cmdlet. Specify the following settings: - Provide the `$_.` automatic variable. - Provide the `Name` property. - Specify the `eq` comparison operator value. - Save the result to the `$computer` variable. 2. Run the `Get-VBRDiscoveredComputerNetwork` cmdlet. Set the `$computer` variable as the `Computer` parameter value. Save the result to the `$adapters` variable. The `Get-VBRDiscoveredComputerNetwork` cmdlet will return an array of network adapters. Mind the ordinal number of the necessary network adapter. Note that to count objects of the array you must start with 0. 3. Save the `$adapters[0]` variable to the `$netAdapter` variable to be used with other cmdlets. ::: ## Related Commands [`Get-VBRDiscoveredComputer`](get-vbrdiscoveredcomputer.md)