21

我想设置一个具有特定权限的特定文件夹以继承其父文件夹的所有权限。我知道我应该使用icacls.

我的文件夹如下所示:

- mp
  - build (set this one to inherit from mp)
4

1 回答 1

40

像这样:

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上阅读更多信息

于 2014-03-17T11:52:05.253 回答