Documentation

win_group - Add and remove local groups

New in version 1.7.

Synopsis

  • Add and remove local groups

Options

parameter required default choices comments
description
no
Description of the group
name
yes
Name of the group
state
no present
  • present
  • absent
Create or remove the group

Examples

- name: Create a new group
  win_group:
    name: deploy
    description: Deploy Group
    state: present

- name: Remove a group
  win_group:
    name: deploy
    state: absent

Status

This module is flagged as stableinterface which means that the maintainers for this module guarantee that no backward incompatible interface changes will be made.

Support

This module is maintained by those with core commit privileges

For more information on what this means please read Module Support

For help in developing on modules, should you be so inclined, please read Community Information & Contributing, Helping Testing PRs and Developing Modules.