windows - Using icacls to set permissions of a folder to inherit recursively -


i want set specific folder specific rights inherit rights of it's parent folder. know should use icacls.

my folders this:

- mp   - build (set 1 inherit mp) 

like this:

icacls "build\*" /q /c /t /reset 

the secret was:

/reset - replaces acls default inherited acls matching files. /t     - performs operation on specified files in current directory , subdirectories. 

read more @ microsoft technet icacls


Comments

Popular posts from this blog

get url and add instance to a model with prefilled foreign key :django admin -

android - Keyboard hides my half of edit-text and button below it even in scroll view -

css - Make div keyboard-scrollable in jQuery Mobile? -