You are reading an unmaintained version of the Ansible documentation. Unmaintained Ansible versions can contain unfixed security vulnerabilities (CVE). Please upgrade to a maintained version. See the latest Ansible documentation .
win_acl - Set file/directory/registry permissions for a system user or group
Add or remove rights/permissions for a given user or group for the specified file, folder, registry key or AppPool identifies.
If adding ACL’s for AppPool identities (available since 2.3), the Windows Feature “Web-Scripting-Tools” must be enabled.
parameter
required
default
choices
comments
inherit
no
For Leaf File, 'None'; For Directory, 'ContainerInherit, ObjectInherit';
ContainerInherit None ObjectInherit
Inherit flags on the ACL rules.
Can be specified as a comma separated list, e.g. ContainerInherit
, ObjectInherit
.
path
yes
The path to the file or directory.
propagation
no
None
InheritOnly None NoPropagateInherit
Propagation flag on the ACL rules.
rights
yes
The rights/permissions that are to be allowed/denied for the specified user or group for the item at path
.
state
no
present
Specify whether to add present
or remove absent
the specified access rule.
type
yes
Specify whether to allow or deny the rights specified.
user
yes
User or Group to add specified rights to act on src file/folder or registry key.
- name : Restrict write and execute access to User Fed-Phil
win_acl :
user : Fed-Phil
path : C:\Important\Executable.exe
type : deny
rights : ExecuteFile,Write
- name : Add IIS_IUSRS allow rights
win_acl :
path : C:\inetpub\wwwroot\MySite
user : IIS_IUSRS
rights : FullControl
type : allow
state : present
inherit : ContainerInherit, ObjectInherit
propagation : 'None'
- name : set registry key right
win_acl :
path : HKCU:\Bovine\Key
user : BUILTIN\Users
rights : EnumerateSubKeys
type : allow
state : present
inherit : ContainerInherit, ObjectInherit
propagation : 'None'
- name : Remove FullControl AccessRule for IIS_IUSRS
win_acl :
path : C:\inetpub\wwwroot\MySite
user : IIS_IUSRS
rights : FullControl
type : allow
state : absent
inherit : ContainerInherit, ObjectInherit
propagation : 'None'
- name : Deny Intern
win_acl :
path : C:\Administrator\Documents
user : Intern
rights : Read,Write,Modify,FullControl,Delete
type : deny
state : present
This module is flagged as preview which means that it is not guaranteed to have a backwards compatible interface.
For more information about Red Hat’s this support of this module, please
refer to this knowledge base article<https://access.redhat.com/articles/rhel-top-support-policies>
For help in developing on modules, should you be so inclined, please read Community Information & Contributing , Testing Ansible and Developing Modules .
Copyright © 2017 Red Hat, Inc.
Last updated on Nov 15, 2022.
Ansible docs are generated from GitHub sources using Sphinx using a theme provided by Read the Docs . . Module documentation is not edited directly, but is generated from the source code for the modules. To submit an update to module docs, edit the 'DOCUMENTATION' metadata in the modules directory of the core source code repository .