Display all shares/permissions

  • Thread starter Thread starter Andrew R. Siegel
  • Start date Start date
A

Andrew R. Siegel

Is there a tool that will look at a server and report all
the folders' share and security permissions. I need to
rebuild a server and don't really want to look at a few
hundred folders to determine their shares and permissions.

Thank you.

Andy
 
The command

cacls.exe d:\*.* /t

will display your NTFS permissions. You should not use
share permissions - NTFS permissions are much more
powerful, and using both will lead to confusion.

The command

net share

will list all existing shares.
 
Back
Top