我需要修改文件夹中的“经过身份验证的用户”组并将其置于完全控制之下。
我尝试了一个 powershell 脚本,但它不起作用,而且是批量脚本,能帮我吗?
这是批次:
icacls c:\TEST /grant *S-1-5-11:(f)
和 powershell:
$FolderPath = "C:\Program Files\Eliot"
$ACL = Get-Acl -Path $FolderPath
$SID = New-Object System.Security.Principal.SecurityIdentifier("S-1-5-11")
$Rule = new-object System.Security.AccessControl.FileSystemAccessRule($SID.Value, "FullControl",”ContainerInherit,ObjectInherit”,”None”,”Allow”)
$ACL.SetAccessRule($Rule)
Set-Acl -Path $FolderPath -AclObject $ACL