We have various servers that have many directories shared. It's easy enough to look at the share browser to see what the "top level" shares are, but underneath is a jumbled mess of custom permissions, none of which is documented.

I'd like to enumerate all the shares on the domain (definitely all the 'servers', local PCs would be nice) and then recurse down each one and report any deviation from the parent. If the child has the same permissions, no need to report that back.

I'd prefer a simple script-y solution to writing a big C# app, but any method that works will do (even existing software).

For example, I'd like to get:

SERVER1\
 \-- C: (EVERYONE: Total control, ADMINs, etc. etc.)
   \-- (skip anything that is not the same as above)
   \-- SuperSecretStuff (Everyone: NO access; Bob: Read access)
SERVER2\ 
 \-- Stuff (some people)

etc.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

I know it isnt scripting, but have you tried ShareEnum? http://technet.microsoft.com/en-us/sysinternals/bb897442.aspx and then export it out? You can also compare to older runs. I don't think there is a cmd line interface (which sucks), but it will get you the info you need

link|improve this answer
It's neat but doesn't enumerate the subdirs of shares for different permissions levels. For example, on server A, we have D:\company shared. Deep within there D:\company\path\to\dir we have another directory with custom perms that doesn't show up in ShareEnum :( – Matt Rogish Sep 22 '08 at 20:44
feedback

Shares are mapped by the absolute path. If you move the files that path will be changed and the share will stop working. I set my shares for "Everyone" and "Full Control" and use the NTFS permissions to actually secure the files.

So write down the name of the share, cut and paste the folder and reshare it at the new location with the same name. Your users should be none the wiser (do this after hours so no one is connected to the share at the time).

You can have more information through Lepide page

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.