You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 27, 2024. It is now read-only.
Dear All,
Need help in correcting the below code for checking files permission. My objective is to check for GENERAL USER permission on files listed in loop. All General users has only permission "Read & Execute, List Folder Contents and Read "
name: Checking OSR Permissions on windows systems
hosts: ALL
Dear All,
Need help in correcting the below code for checking files permission. My objective is to check for GENERAL USER permission on files listed in loop. All General users has only permission "Read & Execute, List Folder Contents and Read "
name: Checking OSR Permissions on windows systems
hosts: ALL
become: yes
tasks:
name: checking OSR permission
loop:
- C:\Windows
- C:\Windows\security
- C:\Windows\System
- C:\Windows\System32
- C:\Windows\System32\drivers
- C:\Windows\System32\spool
- C:\Windows\System32\GroupPolicy
- C:\Windows\WinSxS\Backup
- C:\Windows\SysWOW64\drivers
win_acl:
path: "{{ item }}"
user: Intern
rights: Read,Write,Modify,FullControl,Delete
type: allow
state: present
The text was updated successfully, but these errors were encountered: