ansible.windows.win_feature module – Installs and uninstalls Windows Features on Windows Server
Note
This module is part of the ansible.windows collection (version 2.5.0).
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 ansible.windows
.
To use it in a playbook, specify: ansible.windows.win_feature
.
Synopsis
- Installs or uninstalls Windows Roles or Features on Windows Server.
- This module uses the Add/Remove-WindowsFeature Cmdlets on Windows 2008 R2 and Install/Uninstall-WindowsFeature Cmdlets on Windows 2012, which are not available on client os machines.
Parameters
Parameter | Comments |
---|---|
include_management_tools boolean | Adds the corresponding management tools to the specified feature. Not supported in Windows 2008 R2 and will be ignored. Choices:
|
include_sub_features boolean | Adds all subfeatures of the specified feature. Choices:
|
name list / elements=string / required | Names of roles or features to install as a single feature or a comma-separated list of features. To list all available features use the PowerShell command |
source string | Specify a source to install the feature from. Not supported in Windows 2008 R2 and will be ignored. Can either be |
state string | State of the features or roles on the system. Choices:
|
See Also
See also
- chocolatey.chocolatey.win_chocolatey
-
Manage packages using chocolatey.
- ansible.windows.win_package
-
Installs/uninstalls an installable package.
Examples
- name: Install IIS (Web-Server only) ansible.windows.win_feature: name: Web-Server state: present - name: Install IIS (Web-Server and Web-Common-Http) ansible.windows.win_feature: name: - Web-Server - Web-Common-Http state: present - name: Install NET-Framework-Core from file ansible.windows.win_feature: name: NET-Framework-Core source: C:\Temp\iso\sources\sxs state: present - name: Install IIS Web-Server with sub features and management tools ansible.windows.win_feature: name: Web-Server state: present include_sub_features: true include_management_tools: true register: win_feature - name: Reboot if installing Web-Server feature requires it ansible.windows.win_reboot: when: win_feature.reboot_required
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key | Description |
---|---|
exitcode string | The stringified exit code from the feature installation/removal command. Returned: always Sample: |
feature_result complex | List of features that were installed or removed. Returned: success |
display_name string |
Feature display name. Returned: always Sample: |
id integer |
A list of KB article IDs that apply to the update. Returned: always Sample: |
message list / elements=string |
Any messages returned from the feature subsystem that occurred during installation or removal of this feature. Returned: always Sample: |
reboot_required boolean |
True when the target server requires a reboot as a result of installing or removing this feature. Returned: always Sample: |
restart_needed boolean |
DEPRECATED in Ansible 2.4 (refer to Returned: always Sample: |
skip_reason string |
The reason a feature installation or removal was skipped. Returned: always Sample: |
success boolean |
If the feature installation or removal was successful. Returned: always Sample: |
reboot_required boolean | True when the target server indicates a reboot is required (no further updates can be installed until after a reboot). This my be true even if not change had occurred as the value is derived from the server state. Returned: success Sample: |
Collection links
© 2012–2018 Michael DeHaan
© 2018–2024 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/latest/collections/ansible/windows/win_feature_module.html