I am new to active directory and I am trying to put together a query that will return list of users and groups who have permissions to read the contents of any accessible file. I can not find any samples that deal with files. So I am at a lost on how to start.
A:
Take a look at this CodePlex project - looks like it's doing exactly what you want.
Traveling Tech Guy
2009-12-14 04:15:41
I am using this project; that not the problem. All the sample that I can find only deal with users and groups with some of their properties. I can not find any samples or doc. that show how accessible files relate to users and groups.
dlb
2009-12-14 04:36:40
A:
This might help - looks like it's what you're trying to do:
Basically, the files are "protected" by ACL - Access Control Lists - which is basically what you see in the UI tool - the "read", "modify", "full control" permissions etc. Those ACL's contain the user or group in question, and the permission to be set or removed.
marc_s
2009-12-14 06:10:07