September 2018
Beginner to intermediate
214 pages
5h 53m
English
These two modules are used to manage the users and groups of Windows hosts' local machines. The following playbook example shows how to add each mode to Windows hosts:
---- name: Windows Module running hosts: winservers gather_facts: false tasks: - name: create a new group dev win_group: name: developers description: Development department group state: present - name: create a new user in the dev group win_user: name: winuser1 password: Ju5t@n0th3rP@55w0rd state: present groups: - developers
Read now
Unlock full access