I am looking at using icacls.exe. However, before proceeding, I wanted clarification on the difference between these two ACL's:

            (OI) - object inherit
            (CI) - container inherit
link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

These flags control the inheritance of ACLs. There are other flags, too-- IO and NP. You can see more about them in the article I link below.

In short, access control entries (ACEs) flagged only with "Object Inheritance" apply that ACE to files in a folder, but not subfolders within that folder. ACEs flagged only with "Container Inheritance" apply that ACE to subfolders of the folder but not files.

There are several more permutations possible, too. You can see a more verbose human-readable description here: http://support.microsoft.com/kb/220167

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.