通过 PowerShell ACL 批量删除对文件夹的直接访问权限

通过 PowerShell ACL 批量删除对文件夹的直接访问权限

在我工作的许多服务器上,共享文件夹权限变得混乱,因为有些技术人员需要获得所有权,所以直接授予他们权限。我已经想出了如何解决所有权问题,这样就不会再发生这种情况了,但我还在清理这些权限。不幸的是,当我运行此命令时,什么都没有发生,甚至没有错误。我猜这是我的某种逻辑错误,但我找不到它。任何帮助都将不胜感激。

# $vData is the root path
Get-Item $vData | foreach { $_ ; $_ | Get-ChildItem -directory -Force -Recurse }| foreach {   $currentDir = $_;  $acl = ($_ | Get-Acl).Access;    $IDs = $acl | select identityreference ;   foreach ($ID in $IDs)      {   if (($ID.ToString()).endswith('-admin')) {      $acesToRemove = $acl | where{ $_.IsInherited -eq $false -and $_.IdentityReference -eq $ID };       $acl.RemoveAccessRuleAll($acesToRemove);        Set-Acl -AclObject $acl $currentDir.ToString();   }    }    }

由于它只有一行,因此我将其拆分为以下以便于阅读。

Get-Item $vData |`
foreach {`
 $_ ; $_ | Get-ChildItem -directory -Force -Recurse `
}`
| foreach {`
   $currentDir = $_;`
   $acl = ($_ | Get-Acl).Access; `
   $IDs = $acl | select identityreference ;`
   foreach ($ID in $IDs)      {   `
     if (($ID.ToString()).endswith('-admin')) {`
        $acesToRemove = $acl | where{ $_.IsInherited -eq $false -and $_.IdentityReference -eq $ID };`
        $acl.RemoveAccessRuleAll($acesToRemove); `
        Set-Acl -AclObject $acl $currentDir.ToString(); `
           }`
     }`
    }

删除权限的代码基于我在此处找到的代码 使用 PowerShell 从 ACL 中完全删除用户

答案1

我相信 RemoveAccessRuleAll (和 RemoveAccessRule) 适用于 ACL,而不适用于 Access 属性。请尝试以下方法:

Get-ChidItem -Path $root -Directory -Force -Recurse |
  ForEach-Object -Process {
    $path = $_.FullName
    Write-Output "Working on '$path'"
    $acl = Get-Acl -Path $path
    if ($aclsToRemove = $acl.Access | Where-Object -FilterScript { $_.IdentityReference -like '*-admin' }) {
      Write-Output "  Found $($aclsToRemove.Count) ACLs to remove:"
      foreach ($aclToRemove in $aclsToRemove) {
        Write-Output "    Removing $($aclToRemove.IdentityReference) - $($aclToRemove.FileSystemRights) - $($aclToRemove.AccessControlType) from ACL list"
        $acl.RemoveAccessRule($aclToRemove)
      }
      Write-Output "  Setting new ACL on filesystem"
      Set-Acl -Path $_.FullName -AclObject $acl
    }
  }

答案2

从 reddit 上找到下面的答案,它似乎满足了我的需要。

https://www.reddit.com/r/PowerShell/comments/p19br8/bulk_removing_direct_access_to_a_folder_via/ PS_亚历克斯

我认为您的问题是 $acl = ($_ | Get-Acl).Access。您的 $acl 对象仅包含 ACE。Set-Acl cmdlet 需要完整的 ACL 对象作为 -AclObject 参数的输入。

你可以尝试这样做:

#Assuming $vdata is your root path

foreach($folder 在 Get-ChildItem -Path $vdata -Directory -Recurse -Force){

#Get the current ACL of the folder
$acl = Get-Acl -Path $folder.FullName

#Uncomment to explore the $acl object
#$acl | fl

#Filter the ACEs to identify the ones to remove, and remove them
foreach ($aceToRemove in $acl.Access.Where({$psitem.IdentityReference -match "-admin$" -and $psitem.IsInherited -eq $false})) {
    $acl.RemoveAccessRule($aceToRemove)
}

#Uncomment to explore the $acl object
#$acl | fl

#Apply the ACL
Set-Acl -AclObject $acl -Path $folder.FullName

}

相关内容