How to make iCacls access accessible at the folder level so that it can be inherited?

Using the command:

iCACLS.exe \\server\serverroot\siteroot /grant:r domain\id:RX /T /C

I can provide access to each file in the root folder of the site, but the folder itself does not get access. The problem is that any new file that is added does not have read access until the command is run again. What? I do not understand?

+5
source share
1 answer

The reason the folder itself is not gaining access is because I did not tell iCacls that I wanted it to inherit access. The team should be:

iCACLS.exe \\server\serverroot\siteroot /grant:r domain\id:(OI)(CI)(RX) /T /C

What I need (and for predictable reasons. I like it.)

+11
source

All Articles