Check permissions for security group on network folder
Run the following PowerShell script:
$GroupName = "BFNO\\YourSecurityGroup"
$Folders = Get-ChildItem "C:\SharedFolders" -Recurse -Directory
foreach ($Folder in $Folders) {
$acl = Get-Acl $Folder.FullName
foreach ($access in $acl.Access) {
if ($access.IdentityReference -eq $GroupName) {
Write-Output "$($GroupName) has $($access.FileSystemRights) on $($Folder.FullName)"
}
}
}