ObjectSecurity.SetAccessRuleProtection Method
Sets or removes protection of the access rules associated with this ObjectSecurity object. Protected access rules cannot be modified by parent objects through inheritance.
Assembly: mscorlib (in mscorlib.dll)
public void SetAccessRuleProtection( bool isProtected, bool preserveInheritance )
Parameters
- isProtected
- Type: System.Boolean
true to protect the access rules associated with this ObjectSecurity object from inheritance; false to allow inheritance.
- preserveInheritance
- Type: System.Boolean
true to preserve inherited access rules; false to remove inherited access rules. This parameter is ignored if isProtected is false.
| Exception | Condition |
|---|---|
| InvalidOperationException |
This method attempts to remove inherited rules from a non-canonical Discretionary Access Control List (DACL). |
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Even the folder's or file's access rule protection is set to true by calling DirectorySecurity.SetAccessRuleProtection(true, false),
DirectorySecurity.RemoveAccessRule method can still remove folder or file access permission on Windows Server 2003. While in Windows XP, only if access rule protection is closed, folder or file access permission rule can be removed.
If the folder or file access rule protection is set to true, by default the action to remove the access permission rule will fail.
However, here are the testing results:
Windows XP: When access rule protection is set to true, removing access permission fails.
Windows Server 2003: When access rule protection is set to true, removing access permission still works.
Windows Vista: When access rule protection is set to true, removing access permission fails.
When access rule protection is set to false, removing access permission can work in all above operation systems.
Therefore, there might be some potential issue around foler or file access permission in Windows Server 2003.
- 8/25/2009
- DSC_KE_MSFT