NAME
Disable-NetworkSwitchFeature
SYNOPSIS
Disables features of a network switch.SYNTAX
Disable-NetworkSwitchFeature [-InformationAction {SilentlyContinue | Stop | Continue | Inquire | Ignore |
Suspend}] [-InformationVariable
] -CimSession -FeatureName [ ] Disable-NetworkSwitchFeature [-InformationAction {SilentlyContinue | Stop | Continue | Inquire | Ignore |
Suspend}] [-InformationVariable
] -CimSession -Name [ ] Disable-NetworkSwitchFeature [-InformationAction {SilentlyContinue | Stop | Continue | Inquire | Ignore |
Suspend}] [-InformationVariable
] -CimSession -InstanceId [ ] Disable-NetworkSwitchFeature [-InformationAction {SilentlyContinue | Stop | Continue | Inquire | Ignore |
Suspend}] [-InformationVariable
] -CimSession [ ] DESCRIPTION
The Disable-NetworkSwitchFeature cmdlet disables specified features of a network switch.
PARAMETERS
-CimSession
Specifies the CimSession that this cmdlet uses to connect to the network switch. For more information aboutCimSession objects, type Get-Help New-CimSession.
Required? true Position? named Default value none Accept pipeline input? false Accept wildcard characters? false-FeatureName
Specifies a feature name, an integer, of a feature to disable. A feature name might not be unique. This cmdlet disables all features with the same name. Required? true Position? named Default value none Accept pipeline input? false Accept wildcard characters? false-InformationAction [
Specifies how this cmdlet responds to an information event. The acceptable values for this parameter are:] -- SilentlyContinue
-- Stop
-- Continue
-- Inquire
-- Ignore
-- Suspend
Required? false Position? named Default value none Accept pipeline input? false Accept wildcard characters? false-InformationVariable [
Specifies a variable in which to store an information event message. Required? false Position? named Default value none Accept pipeline input? false Accept wildcard characters? false] -InstanceId
Specifies the instance ID of a feature to disable. Required? true Position? named Default value none Accept pipeline input? false Accept wildcard characters? false-Name
Specifies the name of a feature to disable. This parameter supports wildcard characters. Required? true Position? named Default value none Accept pipeline input? false Accept wildcard characters? falseThis cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216). INPUTS
CimInstance[] You can pipe an array of CimInstance objects that correspond to a feature to this cmdlet.OUTPUTS
None This cmdlet does not generate any output.Example 1: Disable a feature by using its name
PS C:\>$Session = New-CimSession -ComputerName "NetworkSwitch08"
PS C:\> Disable-NetworkSwitchFeature -CimSession $Session -Name "SSH"
The first command creates a CimSession for a network switch, and then stores it in the $Session variable. For more
information about CimSession objects, type Get-Help New-CimSession.
The second command disables the feature named SSH for the network switch NetworkSwitch08 by using the $Session
object.Example 2: Disable a feature by using an instance ID
PS C:\>Disable-NetworkSwitchFeature -CimSession $Session -InstanceID "Contoso:Feature:2"
This command disables a feature by using the instance ID to identify it. The command includes a CimSession, similar to the first example.RELATED LINKS
Enable-NetworkSwitchFeature
Get-NetworkSwitchFeature