The cacls tag has no wiki summary.
2
votes
0answers
63 views
How to grant access to a folder using cacls on Windows XP?
I have revoked a permission for a folder test using cacls as follows.
cacls test /p username:n
It worked properly. I tried to unlock it using following command.
cacls test /p username:f
Command ...
0
votes
1answer
76 views
Permission denied for inclusion of file in windows
The following code:
include path/to/file
produces this error output:
... path/to/file: Permission denied
I ran:
cacls C: /t /g Everyone:R
so that the new permissions read:
...
0
votes
1answer
423 views
Adding users to a directory recursively windows 7
I'm trying to set up my site on IIS, and it would seem I need to add the user group "USERS" to all files/folders within my site. This would require recursively adding a user to the root directory of ...
1
vote
0answers
204 views
Give user create/read, but revoke delete/overwrite
A little background: I've got a citrix server with about 20 accounts that are used in a round robin fashion by various remote users to access a published application. This application allows users to ...
2
votes
2answers
659 views
Permissions on new created files (Windows 7 specific)?
Maybe a noob question, but how ALCs are determined on new created files (by running MyApp.exe)? I'd like to grant "users" full control on new files created inside C:\ProgramData\MyApp when launching ...
2
votes
3answers
765 views
Using cacls to set permission on executables
How exactly is it possible to restrict read and execute permissions of a file, and leave everything else in tact. So you can't open the file, although you can do things like move it and delete it etc.
...
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 ...
2
votes
1answer
233 views
How to make rsync create constant ACLs under cygwin?
I used a cygwin command like
rsync -rtl --delete --delete-excluded /cygwin/c /mydisk
on Windows XP and ended up with a 94 line long completely insane ACL for /mydisk/c. None of the options rtl ...
5
votes
3answers
4k views
0
votes
3answers
1k views
Strip my windows NTFS disk of all ACLs
When you purchase a windows PC nowadays, you don't actually "own" the whole disk...
There are so many ACLs on each folder that there are portions of it you actually can access only through a ...
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
...