Get-SCExtensionUplinkPortProfile
Gets an extension uplink port profile.
Syntax
All (Default)
Get-SCExtensionUplinkPortProfile
[[-Name] <String>]
[-VMMServer <ServerConnection>]
[<CommonParameters>]
ByID
Get-SCExtensionUplinkPortProfile
[[-Name] <String>]
-ID <Guid>
[-VMMServer <ServerConnection>]
[<CommonParameters>]
ByVirtualSwitchExtension
Get-SCExtensionUplinkPortProfile
[[-Name] <String>]
-VirtualSwitchExtension <VirtualSwitchExtension>
[-VMMServer <ServerConnection>]
[<CommonParameters>]
ByVirtualSwitchExtensionManager
Get-SCExtensionUplinkPortProfile
[[-Name] <String>]
-VirtualSwitchExtensionManager <VirtualSwitchExtensionManager>
[-VMMServer <ServerConnection>]
[<CommonParameters>]
Description
The Get-SCExtensionUplinkPortProfile cmdlet gets one or more extension uplink port profiles. You can get an extension uplink port profile by its name or ID, or by its virtual switch extension or virtual switch extension manager.
Examples
Example 1: Get extension uplink port profiles
PS C:\> Get-SCExtensionUplinkPortProfile
This command gets all the extension uplink port profiles and displays their information.
Example 2: Get an extension uplink port profile using a virtual switch extension
PS C:\> $VSE = Get-SCVirtualSwitchExtension -Name "VirtualSwitchExtension01"
PS C:\> $ExtUPP = Get-SCExtensionUplinkPortProfile --VirtualSwitchExtension $VSE
The first command gets a virtual switch extension named VirtualSwitchExtension01 by using the Get-SCVirtualSwitchExtension cmdlet. The command stores the extension in the $VSE variable.
The second command gets the extension uplink port profiles for this virtual switch extension in $VSE. This example is valid only if there are some switch extensions installed.
Parameters
-ID
Specifies the numerical identifier as a globally unique identifier, or GUID, for a specific object.
Parameter properties
Type: | Guid |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
ByID
Position: | Named |
Mandatory: | True |
Value from pipeline: | False |
Value from pipeline by property name: | False |
Value from remaining arguments: | False |
-Name
Specifies the name of a Virtual Machine Manager (VMM) object.
Parameter properties
Type: | String |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
(All)
Position: | 0 |
Mandatory: | False |
Value from pipeline: | False |
Value from pipeline by property name: | False |
Value from remaining arguments: | False |
-VirtualSwitchExtension
Specifies a virtual switch extension object.
To get a virtual switch extension object, use the Get-SCVirtualSwitchExtension cmdlet.
Parameter properties
Type: | VirtualSwitchExtension |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
ByVirtualSwitchExtension
Position: | Named |
Mandatory: | True |
Value from pipeline: | False |
Value from pipeline by property name: | False |
Value from remaining arguments: | False |
-VirtualSwitchExtensionManager
Specifies a virtual switch extension manager object.
To obtain a virtual switch extension manager object, use the Get-SCVirtualSwitchExtensionManager cmdlet.
Parameter properties
Type: | VirtualSwitchExtensionManager |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
ByVirtualSwitchExtensionManager
Position: | Named |
Mandatory: | True |
Value from pipeline: | False |
Value from pipeline by property name: | False |
Value from remaining arguments: | False |
-VMMServer
Specifies a VMM server object.
Parameter properties
Type: | ServerConnection |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
(All)
Position: | Named |
Mandatory: | False |
Value from pipeline: | True |
Value from pipeline by property name: | False |
Value from remaining arguments: | False |
CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.