码迷,mamicode.com
首页 > 系统相关 > 详细

powershell遍历文件夹设置权限,解决文件无法删除的问题。

时间:2018-01-13 15:32:58      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:get   function   blog   nbsp   post   icacls   att   遍历文件夹   ica   

function set-rights ($path) {
    $p = Get-Item $path;
    if ($p.Attributes -eq Directory) {
        foreach ($child in Get-ChildItem $p.FullName) {
            set-X($child.FullName);
        }
    }
    icacls $p.FullName /grant everyone:f;
}

$path="E:\abc";
set-rights($t);

 

powershell遍历文件夹设置权限,解决文件无法删除的问题。

标签:get   function   blog   nbsp   post   icacls   att   遍历文件夹   ica   

原文地址:https://www.cnblogs.com/mokeyish/p/8278945.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!