Set owner
- Set owner of files or directories.
.. seealso:: :ref:`ansible.windows.win_acl_module` The official documentation on the **ansible.windows.win_acl** module. :ref:`ansible.windows.win_file_module` The official documentation on the **ansible.windows.win_file** module. :ref:`ansible.windows.win_stat_module` The official documentation on the **ansible.windows.win_stat** module.
- name: Change owner of path
ansible.windows.win_owner:
path: C:\apache
user: apache
recurse: yes
- name: Set the owner of root directory
ansible.windows.win_owner:
path: C:\apache
user: SYSTEM
recurse: no
- Hans-Joachim Kliemeck (@h0nIg)