I am a little confused about setting NTFS Permissions to a directory after I created Active Directory Groups (both programmatically). When I created the Active Directory Objects then I have to wait a few seconds to set the NTFS Permissions. If I have not this timeout then I get sometimes an error message that the identify (active directory groupname) could not found. Is it possible that the DirectorySecurity-Class from DirectoryInfo-Class has an different algorithm to get the idenfity from active directory objects? Because when I checking the existing of the groups in active directory with System.DirectoryServices all the objects exist suddenly after creation.

link|improve this question

1  
Belongs on ServerFault. – Richard Jun 1 '10 at 9:36
Disagree. He refers to using System.DirectoryServices, which is a .NET programming construct. – Dave Markle Jun 1 '10 at 9:39
Yep, it is all about C#-Code... – maveonair Jun 1 '10 at 10:47
Please don't repeat the tags (C#) in the title. – John Saunders Jun 1 '10 at 14:07
feedback

2 Answers

up vote 1 down vote accepted

I have to use the SID from the AD Objects and use the SecurityIdentifier-Class for the identity. So when I set the permission now with a SecurityIdenfitier there won't be a translate from NTAccount and all works fine!

link|improve this answer
feedback

You may also be able to solve this by assign the permissions using the same DirectoryEntry reference that you used to create the security principal.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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