Remove-VMSwitchExtensionSwitchFeature

Remove-VMSwitchExtensionSwitchFeature

Removes a feature from a virtual switch.

Syntax

Parameter Set: SwitchName
Remove-VMSwitchExtensionSwitchFeature [-SwitchName] <String[]> -VMSwitchExtensionFeature <VMSwitchExtensionSwitchFeature[]> [-ComputerName <String[]> ] [-Passthru] [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: SwitchObject
Remove-VMSwitchExtensionSwitchFeature [-VMSwitch] <VMSwitch[]> -VMSwitchExtensionFeature <VMSwitchExtensionSwitchFeature[]> [-Passthru] [-Confirm] [-WhatIf] [ <CommonParameters>]

Detailed Description

The Remove-VMSwitchExtensionSwitchFeature removes a feature from a virtual switch. The feature already must have been configured on the virtual switch.

Parameters

-ComputerName<String[]>

Specifies one or more Hyper-V hosts from which the feature is to be removed. NetBIOS names, IP addresses, and fully-qualified domain names are allowable. The default is the local computer — use “localhost” or a dot (“.”) to specify the local computer explicitly.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-Passthru

Specifies that a Microsoft.HyperV.PowerShell.VMSwitchExtensionSwitchFeature is to be passed through to the pipeline representing the feature to be removed.

Aliases

none

Required?

false

Position?

named

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-SwitchName<String[]>

Specifies the name of the virtual switch from which the feature is to be removed.

Aliases

none

Required?

true

Position?

1

Default Value

none

Accept Pipeline Input?

true (ByValue)

Accept Wildcard Characters?

false

-VMSwitch<VMSwitch[]>

Specifies the virtual switch from which the feature is to be removed.

Aliases

none

Required?

true

Position?

1

Default Value

none

Accept Pipeline Input?

true (ByValue)

Accept Wildcard Characters?

false

-VMSwitchExtensionFeature<VMSwitchExtensionSwitchFeature[]>

Specifies the feature to be removed.

Aliases

none

Required?

true

Position?

named

Default Value

none

Accept Pipeline Input?

true (ByValue)

Accept Wildcard Characters?

false

-Confirm

Prompts you for confirmation before running the cmdlet.

Required?

false

Position?

named

Default Value

false

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-WhatIf

Shows what would happen if the cmdlet runs. The cmdlet is not run.

Required?

false

Position?

named

Default Value

false

Accept Pipeline Input?

false

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.

  • None by default; Microsoft.HyperV.PowerShell.VMSwitchExtensionSwitchFeature if –PassThru is specified.

Examples

Example 1

Removes a feature from virtual switch External.

PS C:\> $feature = Get-VMSwitchExtensionSwitchFeature –SwitchName External –FeatureId 3eb2b8e8-4abf-4dbf-9071-16dd47481fbe
PS C:\> Remove-VMSwitchExtensionSwitchFeature External $feature