Skip to content

Get-ChocolateyFeature

SYNOPSIS

Gets the Features set in the Configuration file.

SYNTAX

Get-ChocolateyFeature [[-Feature] <String[]>] [<CommonParameters>]

DESCRIPTION

This command looks up in the Chocolatey Config file, and returns the Features available from there. Some feature may be available but now show up with this command.

EXAMPLES

EXAMPLE 1

Get-ChocolateyFeature -Name MyFeatureName

PARAMETERS

-Feature

Name of the Feature when retrieving a single Feature. It defaults to returning all feature available in the config file.

Type: System.String[]
Parameter Sets: (All)
Aliases: Name

Required: False
Position: 1
Default value: *
Accept pipeline input: True (ByPropertyName, ByValue)
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