home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / sdktools / winnt / cacls / readme.txt < prev    next >
Text File  |  1996-04-19  |  1KB  |  31 lines

  1. Display or Modify Access Control Lists (ACLS) of Files
  2.  
  3.  
  4. The CACLS tool displays or modifies the ACLs of files. 
  5.  
  6. Usage:
  7.  
  8. CACLS filename [/T] [/E] [/C] [/G user:perm] [/R user] [/P user:perm]
  9.                [/D user]
  10.  
  11. filename       Displays ACLs.
  12. /T             Changes ACLs of specified files in the current 
  13.                directory and all subdirectories.
  14. /E             Edit ACL instead of replacing it.
  15. /C             Continue on access denied errors.
  16.  
  17. /G user:perm   Grant specified user access rights.
  18.                Perm can be: R  Read
  19.                             C  Change (write)
  20.                             F  Full control
  21. /R user        Revoke specified user's access rights.
  22. /P user:perm   Replace specified user's access rights.
  23.                Perm can be: N  None
  24.                             R  Read
  25.                             C  Change (write)
  26.                             F  Full control
  27. /D user        Deny specified user access.
  28.  
  29. Wildcards can be used to specify more that one file in a command. You can 
  30. specify more than one user in a command.
  31.