web-dev-qa-db-ja.com

icaclsを使用してフォルダーのアクセス許可を設定して再帰的に継承する

特定の権限を持つ特定のフォルダを設定して、その親フォルダのすべての権限を継承したい。 icaclsを使用する必要があります。

私のフォルダは次のようになります。

- mp
  - build (set this one to inherit from mp)
17
Asken

このような:

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 をご覧ください

33
Asken