up vote 1 down vote favorite
share [g+] share [fb]

I have the following code, that should remove the access of users from a certain folder. Unfortunately it doesn't (the access rule remains in place). No exception is thrown.

AuthorizationRuleCollection arc = ds.GetAccessRules(true, true, typeof(NTAccount));

foreach (FileSystemAccessRule ar in arc)
{
    if (ar.IdentityReference is NTAccount)
    {
        NTAccount account = ar.IdentityReference as NTAccount;

        if (!AdminUsers.Contains(account.Value) &&
            ownerAccount != account.Value)
        {
            ds.RemoveAccessRule(ar);
            WriteLog("Removed rule for: " + account);
        }

     }
}

outputDirectory.SetAccessControl(ds);

I can see from my logs that the RemoveAccessRule was called. Why isn't the rule gone?

Edit: The rule is an inherited rule. Do I need to do something different to remove inherited rules?

link|improve this question

69% accept rate
1  
is there a parent folder that is enforcing the rule you are trying to remove? – Stan R. Nov 3 '09 at 19:07
It is inherited if that's what you mean... – C. Ross Nov 3 '09 at 19:11
feedback

1 Answer

up vote 2 down vote accepted

Take a look at SetAccessRuleProtection on DirectorySecurity class, from reading it..I would think you'd need..

ds.RemoveAccessRule(ar);
ds.SetAccessRuleProtection(true,false);

play around with it.

link|improve this answer
I do believe that was it exactly. It's wonderful, many thanks. – C. Ross Nov 3 '09 at 20:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.