Get-SCVirtualNetworkAdapterPortProfileSet

Get-SCVirtualNetworkAdapterPortProfileSet

Gets a virtual network adapter port profile set.

Syntax

Parameter Set: All
Get-SCVirtualNetworkAdapterPortProfileSet [[-Name] <String> ] [-VMMServer <ServerConnection> ] [ <CommonParameters>]

Parameter Set: ById
Get-SCVirtualNetworkAdapterPortProfileSet [[-Name] <String> ] -ID <Guid> [-VMMServer <ServerConnection> ] [ <CommonParameters>]

Parameter Set: LogicalSwitch
Get-SCVirtualNetworkAdapterPortProfileSet [[-Name] <String> ] -LogicalSwitch <LogicalSwitch> [-VMMServer <ServerConnection> ] [ <CommonParameters>]

Detailed Description

The Get-SCVirtualNetworkAdapterPortProfileSet cmdlet gets one or more virtual network adapter port profile sets. You can get a virtual network adapter port profile set by its name or ID, or all virtual network adapter port profile sets for a logical switch.

Parameters

-ID<Guid>

Specifies the numerical identifier as a globally unique identifier (GUID) for a specific object.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-LogicalSwitch<LogicalSwitch>

Specifies a logical switch object.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-Name<String>

Specifies the name of a VMM object.

Aliases

none

Required?

false

Position?

1

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-VMMServer<ServerConnection>

Specifies a VMM server object.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

True (ByValue)

Accept Wildcard Characters?

false

<CommonParameters>

This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see    about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Inputs

The input type is the type of the objects that you can pipe to the cmdlet.

Outputs

The output type is the type of the objects that the cmdlet emits.

Examples

Example 1: Get a virtual network adapter port profile set by its name

This command gets the virtual network adapter port profile set object named VirtualNetworkAdapterPortProfileSet01, and displays information about the object.

PS C:\> Get-SCVirtualNetworkAdapterPortProfileSet -Name "VirtualNetworkAdapterPortProfSet01"

Example Example 2: Get all virtual network adapter port profile sets for a logical switch.

The first command gets the logical switch object named LogicalSwitch01, and then stores the object in the $LogSwitch variable.

The second command gets all virtual network adapter port profile sets that use logical switch LogicalSwitch01.

PS C:\> $LogSwitch = Get-SCLogicalSwitch -Name "LogicalSwitch01"
PS C:\> Get-SCVirtualNetworkAdapterPortProfileSet -LogicalSwitch $LogSwitch

New-SCVirtualNetworkAdapterPortProfileSet

Remove-SCVirtualNetworkAdapterPortProfileSet

Set-SCVirtualNetworkAdapterPortProfileSet

Get-SCLogicalSwitch