windows – 将“Everyone”组添加到目录及其所有子目录中

前端之家收集整理的这篇文章主要介绍了windows – 将“Everyone”组添加到目录及其所有子目录中前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我目前正在使用Vista 32位.如何添加 Windows安全组“Everyone”并完全控制目录及其所有子目录和所有文件?是否有我可以使用的powershell脚本?

谢谢!

我扩展了martona的代码片段,并且能够访问所有文件夹和子文件夹.这是我的代码
$FilesAndFolders = gci "c:\data" -recurse | % {$_.FullName}
foreach($FileAndFolder in $FilesAndFolders)
{
    #using get-item instead because some of the folders have '[' or ']' character and Powershell throws exception trying to do a get-acl or set-acl on them.
    $item = gi -literalpath $FileAndFolder 
    $acl = $item.GetAccessControl() 
    $permission = "Everyone","FullControl","Allow"
    $rule = New-Object System.Security.AccessControl.FileSystemAccessRule $permission
    $acl.SetAccessRule($rule)
    $item.SetAccessControl($acl)
}
原文链接:https://www.f2er.com/windows/364655.html

猜你在找的Windows相关文章