使用 set-acl 和 powershell 设置继承和传播标志

问题描述 投票:0回答:5

我试图模仿右键单击文件夹、在文件夹上设置“修改”并将权限应用于特定文件夹、子文件夹和文件的操作。

我主要使用Powershell,但是继承仅被设置为“子文件夹和文件”,而不是整个“此文件夹、子文件夹和文件”。

System.Security.AccessControl.PropagationFlags 是否有一些未列出的标志可以正确设置?

这是我迄今为止正在处理的内容。

$Folders = Get-childItem c:\TEMP\
$InheritanceFlag = [System.Security.AccessControl.InheritanceFlags]::ContainerInherit -bor [System.Security.AccessControl.InheritanceFlags]::ObjectInherit
$PropagationFlag = [System.Security.AccessControl.PropagationFlags]::InheritOnly
$objType = [System.Security.AccessControl.AccessControlType]::Allow 

foreach ($TempFolder in $Folders)
{
echo "Loop Iteration"
$Folder = $TempFolder.FullName

$acl = Get-Acl $Folder
$permission = "domain\user","Modify", $InheritanceFlag, $PropagationFlag, $objType
$accessRule = New-Object System.Security.AccessControl.FileSystemAccessRule $permission

$acl.SetAccessRule($accessRule)
Set-Acl $Folder $acl
} 
powershell permissions file-permissions
5个回答
110
投票

下表可帮助查找不同权限组合所需的标志。

仅限此文件夹 此文件夹、子文件夹和文件 此文件夹和子文件夹 此文件夹和文件 仅限子文件夹和文件 仅限子文件夹 仅限文件
传播 仅继承 仅继承 仅继承
传承 容器|对象 集装箱 物体 容器|对象 容器 物体

所以,正如大卫所说,你会想要

InheritanceFlags.ContainerInherit | InheritanceFlags.ObjectInherit 
PropagationFlags.None

46
投票

我想你的答案可以在此页面找到。 从页面:

此文件夹、子文件夹和文件:

InheritanceFlags.ContainerInherit | InheritanceFlags.ObjectInherit 
PropagationFlags.None

17
投票

这里有一些简洁的 Powershell 代码,用于通过修改文件夹的现有 ACL(访问控制列表)来向文件夹应用新权限。

# Get the ACL for an existing folder
$existingAcl = Get-Acl -Path 'C:\DemoFolder'

# Set the permissions that you want to apply to the folder
$permissions = $env:username, 'Read,Modify', 'ContainerInherit,ObjectInherit', 'None', 'Allow'

# Create a new FileSystemAccessRule object
$rule = New-Object -TypeName System.Security.AccessControl.FileSystemAccessRule -ArgumentList $permissions

# Modify the existing ACL to include the new rule
$existingAcl.SetAccessRule($rule)

# Apply the modified access rule to the folder
$existingAcl | Set-Acl -Path 'C:\DemoFolder'

$permissions
变量列表中的每个值都属于FileSystemAccessRule类的this构造函数的参数。

此页面提供。


13
投票

不要因为使用 PowerShell 就忘记了好的前任。 有时他们可以提供最简单的解决方案,例如:

icacls.exe $folder /grant 'domain\user:(OI)(CI)(M)'

9
投票

这里是 MSDN 页面,描述了这些标志以及它们各种组合的结果。

Flag combinations => Propagation results
=========================================
No Flags => Target folder.
ObjectInherit => Target folder, child object (file), grandchild object (file).
ObjectInherit and NoPropagateInherit => Target folder, child object (file).
ObjectInherit and InheritOnly => Child object (file), grandchild object (file).
ObjectInherit, InheritOnly, and NoPropagateInherit => Child object (file).
ContainerInherit => Target folder, child folder, grandchild folder.
ContainerInherit, and NoPropagateInherit => Target folder, child folder.
ContainerInherit, and InheritOnly => Child folder, grandchild folder.
ContainerInherit, InheritOnly, and NoPropagateInherit => Child folder.
ContainerInherit, and ObjectInherit => Target folder, child folder, child object (file), grandchild folder, grandchild object (file).
ContainerInherit, ObjectInherit, and NoPropagateInherit => Target folder, child folder, child object (file).
ContainerInherit, ObjectInherit, and InheritOnly => Child folder, child object (file), grandchild folder, grandchild object (file).
ContainerInherit, ObjectInherit, NoPropagateInherit, InheritOnly => Child folder, child object (file).

要让它递归地将权限应用于目录以及所有子目录和文件,您需要使用这些标志:

InheritanceFlags.ContainerInherit | InheritanceFlags.ObjectInherit 
PropagationFlags.None

因此,您需要为示例进行的具体代码更改是:

$PropagationFlag = [System.Security.AccessControl.PropagationFlags]::None
© www.soinside.com 2019 - 2024. All rights reserved.