chocolatey.chocolatey.win_chocolatey_feature module – Manages Chocolatey features

Note

This module is part of the chocolatey.chocolatey collection (version 1.5.1).

You might already have this collection installed if you are using the ansible package. It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install chocolatey.chocolatey.

To use it in a playbook, specify: chocolatey.chocolatey.win_chocolatey_feature.

New in chocolatey.chocolatey 0.2.7

Synopsis

  • Used to enable or disable features in Chocolatey.

Parameters

Parameter

Comments

name

string / required

The name of the feature to manage.

Run choco.exe feature list to get a list of features that can be managed.

For a list of options see Chocolatey feature docs

state

string

When disabled then the feature will be disabled.

When enabled then the feature will be enabled.

Choices:

  • "disabled"

  • "enabled" ← (default)

See Also

See also

chocolatey.chocolatey.win_chocolatey

Manage packages using chocolatey.

chocolatey.chocolatey.win_chocolatey_config

Manages Chocolatey config settings.

chocolatey.chocolatey.win_chocolatey_facts

Create a facts collection for Chocolatey.

chocolatey.chocolatey.win_chocolatey_source

Manages Chocolatey sources.

Examples

- name: Disable file checksum matching
  win_chocolatey_feature:
    name: checksumFiles
    state: disabled

- name: Stop Chocolatey on the first package failure
  win_chocolatey_feature:
    name: stopOnFirstPackageFailure
    state: enabled

Authors

  • Jordan Borean (@jborean93)

  • Rain Sallow (@vexx32)

  • Josh King (@windos)