使用PowerShell将文件访问权限分配给IIS_IUSRS

时间:2018-07-20 16:59:43

标签: powershell file-access

我正在尝试使用PowerShell将用户组IIS_IUSRS的访问权限添加到文件夹。

目前我有

$accessRule = New-Object System.Security.AccessControl.FileSystemAccessRule("BUILTIN\IIS_IUSRS", "FullControl", "Allow")
$acl = Get-ACL "C:\tmp"
$acl.AddAccessRule($accessRule)
Set-ACL -Path "C:\tmp" -ACLObject $acl

运行时,这会将IIS_IUSRS添加到用户列表中,但没有分配特权。

enter image description here

我错过了什么?

1 个答案:

答案 0 :(得分:1)

在我的系统上,我只需要使用IIS_IUSRS,因此删除BUILTIN\。 此外,我认为您需要使用额外的参数inheritanceFlagspropagationFlags来构造FileSystemAccessRule以获得所需的内容。

尝试一下:

$accessRule = New-Object System.Security.AccessControl.FileSystemAccessRule("IIS_IUSRS", "FullControl", "ContainerInherit,ObjectInherit", "None", "Allow")
$acl = Get-ACL "C:\tmp"
$acl.AddAccessRule($accessRule)
Set-ACL -Path "C:\tmp" -ACLObject $acl

请参阅:https://msdn.microsoft.com/en-us/library/sfe70whw(v=vs.110).aspx