Tagged Questions
2
votes
1answer
2k views
How can I change ACLs recursively using cacls.exe?
I want to restrict the access for everything inside the work directory to me and the system only. I tried this with the following command:
cacls.exe work /t /p 'PIXLA09\Maaartin:f' 'NT ...
1
vote
2answers
5k views
how to grant access to a folder using cacls
I have revoked a permission for a folder test using cacls.
cacls d:/test /D adsd14
Now I trying to reassign permission to this folder using the same command.
cacls d:/test /E /G adsd14:F
...