changed write over to modify

This commit is contained in:
Karl-Wilfried Zimmer 2024-07-15 20:58:58 +02:00
parent e1458836ce
commit bcf3b89e50

View File

@ -70,7 +70,7 @@ if($PSBoundParameters.ContainsKey("ProjectName")){
$rid = $ReadTarget.SID $rid = $ReadTarget.SID
$wid = $WriteTarget.SID $wid = $WriteTarget.SID
$fsrr = "ReadAndExecute" $fsrr = "ReadAndExecute"
$fsrw = "Write" $fsrw = "Modify"
$fsrad = "CreateDirectories" $fsrad = "CreateDirectories"
$fsraf = "CreateFiles " $fsraf = "CreateFiles "
$type = "Allow" $type = "Allow"
@ -78,9 +78,6 @@ if($PSBoundParameters.ContainsKey("ProjectName")){
$fileSystemAccessRuleR = New-Object System.Security.AccessControl.FileSystemAccessRule($rid,$fsrr,"ContainerInherit, ObjectInherit","None",$type) $fileSystemAccessRuleR = New-Object System.Security.AccessControl.FileSystemAccessRule($rid,$fsrr,"ContainerInherit, ObjectInherit","None",$type)
$fileSystemAccessRuleW = New-Object System.Security.AccessControl.FileSystemAccessRule($wid,$fsrw,"ContainerInherit, ObjectInherit","None",$type) $fileSystemAccessRuleW = New-Object System.Security.AccessControl.FileSystemAccessRule($wid,$fsrw,"ContainerInherit, ObjectInherit","None",$type)
$fileSystemAccessRuleWR = New-Object System.Security.AccessControl.FileSystemAccessRule($wid,$fsrr,"ContainerInherit, ObjectInherit","None",$type)
$fileSystemAccessRuleWAF = New-Object System.Security.AccessControl.FileSystemAccessRule($wid,$fsraf,"ContainerInherit, ObjectInherit","Synchronize",$type)
$fileSystemAccessRuleWAD = New-Object System.Security.AccessControl.FileSystemAccessRule($wid,$fsrad,"ContainerInherit, ObjectInherit","Synchronize",$type)
$FolderACL= Get-Acl -Path $folder $FolderACL= Get-Acl -Path $folder
$FolderACL.SetAccessRule($fileSystemAccessRuleR) $FolderACL.SetAccessRule($fileSystemAccessRuleR)
@ -88,15 +85,6 @@ if($PSBoundParameters.ContainsKey("ProjectName")){
$FolderACL= Get-Acl -Path $folder $FolderACL= Get-Acl -Path $folder
$FolderACL.SetAccessRule($fileSystemAccessRuleW) $FolderACL.SetAccessRule($fileSystemAccessRuleW)
Set-Acl -Path $folder.FullName -AclObject $FolderACL Set-Acl -Path $folder.FullName -AclObject $FolderACL
$FolderACL= Get-Acl -Path $folder
$FolderACL.SetAccessRule($fileSystemAccessRuleWR)
Set-Acl -Path $folder.FullName -AclObject $FolderACL
$FolderACL= Get-Acl -Path $folder
$FolderACL.SetAccessRule($fileSystemAccessRuleWAF)
Set-Acl -Path $folder.FullName -AclObject $FolderACL
$FolderACL= Get-Acl -Path $folder
$FolderACL.SetAccessRule($fileSystemAccessRuleWAD)
Set-Acl -Path $folder.FullName -AclObject $FolderACL
return $ret return $ret
} }