Folder Redirection GPO

Joel Heideman 136 Reputation points
2023-12-14T19:23:47.23+00:00

We setup folder redirection policy and mistakenly set the "Grant the user exclusive rights option."

So Administrators cannot access folders due to ownership or other ACL restrictions.

I did a takeown command on a users folder and I was then able to access the folders, but, that broke the share for the user and I had to re-apply the ACL for them to have rights.

I'm curious how this GPO setting would no react if I uncheck the option in the GPO?

I doubt this will affect the Ownership of the hundreds of folders now, correct?

I'm sure I'm not the only one to experience this so I'm looking for a way out without having to re-create the share.

What does the exclusive rights option actually do for current and future folders?

Thanks :)

Windows for business | Windows Client for IT Pros | Directory services | Active Directory
Windows for business | Windows Client for IT Pros | User experience | Other
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Thameur-BOURBITA 36,261 Reputation points Moderator
    2023-12-14T22:07:55.8233333+00:00

    Hi @Joel Heideman

    I confirm that when you set this GPO setting ""Grant the user exclusive rights option."", only user can access on his holder.

    Unfortunatly it's not possible to rollback through GPO, you should use Powershell command to assign the owernership to a admin group or other ACLs.

    Below a example of powershell script to change the owner:

    $ACL = Get-ACL -Path "D:\folderName"
    $Group = New-Object System.Security.Principal.NTAccount("Builtin", "Administrators")
    $ACL.SetOwner($Group)
    Set-Acl -Path "D:\folderName" -AclObject $ACL
    

    Please don't forget to accept helpful answer


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.