特定の権限を持つ特定のフォルダを設定して、その親フォルダのすべての権限を継承したい。 icacls
を使用する必要があります。
私のフォルダは次のようになります。
- mp
- build (set this one to inherit from mp)
このような:
icacls "build\*" /q /c /t /reset
秘密は:
/reset - Replaces ACLs with default inherited ACLs for all matching files.
/t - Performs the operation on all specified files in the current directory and its subdirectories.
詳しくは Microsoft Technet icacls をご覧ください