我想设置一个具有特定权限的特定文件夹,以继承其父文件夹的所有权限。我知道我应该使用icacls
。
我的文件夹如下所示:
- mp
- build (set this one to inherit from mp)
最佳答案
像这样:
icacls "build\*" /q /c /t /reset
secret 是:
/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阅读更多