Skip to content

Disable-ChocolateyFeature

SYNOPSIS

Disable a Chocolatey Feature

SYNTAX

Disable-ChocolateyFeature [-Name] <String> [-NoProgress] [<CommonParameters>]

DESCRIPTION

Allows you to disable a Chocolatey Feature usually accessed by choco feature disable -n=bob

EXAMPLES

EXAMPLE 1

Disable-ChocolateyFeature -Name 'Bob'

PARAMETERS

-Name

Name of the Chocolatey Feature to disable. Some are only available in the Chocolatey for business version.

Type: System.String
Parameter Sets: (All)
Aliases: Feature

Required: True
Position: 1
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-NoProgress

This allows to reduce the output created by the Chocolatey Command.

Type: System.Management.Automation.SwitchParameter
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: False
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

OUTPUTS

NOTES

https://github.com/chocolatey/choco/wiki/CommandsFeature

Back to top