Click here to Skip to main content
Sign Up to vote bad
good
See more: PowerShell
Here is my code: Using "S.S.A." for "System.Security.AccessControl."
$GetACL = Get-Acl $Path
$Access = "domain\$SamID"
 
$Permission = [S.S.A.FileSystemRights]"Modify, Synchronize"
$Inheri = [S.S.A.InheritanceFlags]"ContainerInherit, ObjectInherit"
$Allpropagation = [S.S.A.PropagationFlags]"None"
 
$AccessRule = New-Object S.S.A.FileSystemAccessRule($Access, $Permission, $Inheri, $Allpropagation, "Allow")
 
if ($GetACL.Access | Where { $_.IdentityReference -eq $Access})
    {
    Write-Host "Modifying Permissions For: $Access" -ForeGroundColor Yellow
    $AccessModification = New-Object system.security.AccessControl.AccessControlModification
    $AccessModification.value__ = 2
    $Modification = $False
    $GetACL.ModifyAccessRule($AccessModification, $AccessRule, [ref]$Modification) | Out-Null
	}
Else
    {
	Write-Host "Adding Permission: $Permission For: $Access"
	$GetACL.AddAccessRule($AccessRule)
	}
 
Set-Acl -aclobject $GetACL -Path $Path
 

It applies the group with the correct permissions, but appears as the SID when I look at the rights for the folder. I have checked and the SID that shows up with rights to the folder matches the SID of the group in ADSI Edit that I expected to show up. Is there some issue with my code or something else?
Posted 12 Sep '12 - 1:32
graybin384


This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 OriginalGriff 335
1 Sergey Alexandrovich Kryukov 318
2 Arun Vasu 315
3 Maciej Los 208
4 Aarti Meswania 180
0 Sergey Alexandrovich Kryukov 9,680
1 OriginalGriff 7,539
2 CPallini 4,018
3 Rohan Leuva 3,362
4 Maciej Los 2,951


Advertise | Privacy | Mobile
Web01 | 2.6.130523.1 | Last Updated 12 Sep 2012
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid