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);
Posted mokeyish
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell遍历文件夹设置权限,解决文件无法删除的问题。相关的知识,希望对你有一定的参考价值。
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遍历文件夹设置权限,解决文件无法删除的问题。的主要内容,如果未能解决你的问题,请参考以下文章