SUMMARY
CACLS is a Windows NT command-line utility that is used to display or
modify file or directory access control lists (ACLs). The online help files
for CACLS do not mention that CACLS will add, modify, or delete group
permissions, as well as user permissions, from NTFS ACLs.
CACLS can be used to modify the ACLs on files or directories. This ability
is often useful for adding or deleting a user or group permission without
modifying other existing permissions. The GUI in File Manager or Windows NT
Explorer is currently limited to replacing the ACLs.
CACLS can also be used to change permissions for groups with names
containing a space: when specifying such a group, it is necessary to
delimit the name of the group with double quotes (for example, "group
name").
CACLS cannot be used to create "special" permissions. It is currently
limited to the permissions No Access, Read, Change, and Full Control.
The "None" permission and the "Deny" parameter in CACLS are equivalent to
"No Access" in the GUI. The "Revoke" parameter deletes an explicit
permission but does not prevent the use of permissions that a user might
have through membership in other groups.
For additional information on automation using CACLS, please see the
following article in the Microsoft Knowledge Base:
ARTICLE-ID: 135268
TITLE : How to Use CACLS.EXE in a Batch File
Examples
Follow these steps to change the ACLs of all files and directories on drive
C to allow full control for the Administrators local group:
- Open a command prompt.
- Type:
cacls c:\ /t /e /g Administrators:f
Follow these steps to change the ACLs of all files in the C:\Temp directory
(but not its subdirectories), to add the read permission for the Domain
Users global group and the Users local group, and to remove any explicit
permissions for the Everyone group:
- Open a command prompt.
- Type:
cacls c:\temp\*.* /e /g "Domain Users":r Users:r /r Everyone