Ok so what you can do :
- Retrieve the SID of your group
- Use this SID to delegate the right
Below an example :
Import-Module ActiveDirectory
$group = Get-ADGroup SystemAdmins
$OUs = Get-ADOrganizationalUnit -Filter 'name -like "UK*"' -SearchBase "dc=superit,DC=com" -SearchScope OneLevel
foreach($OU in $OUs) {
$OUPath = "AD:\$($OU.DistinguishedName)"
$acl = Get-Acl -Path $OUPath
$ace = New-Object System.DirectoryServices.ActiveDirectoryAccessRule($group.SID,[System.DirectoryServices.ActiveDirectoryRights]::DeleteTree,[System.Security.AccessControl.AccessControlType]::Allow)
$acl.AddAccessRule($ace)
Set-Acl -Path $OUPath -AclObject $acl
}