Link to home
Start Free TrialLog in
Avatar of LockDown32
LockDown32Flag for United States of America

asked on

Need utility to report directory security

I know it is going to be a huge, huge list but is there a utility out there that will go through every folder and sub folder on the server and report who has what rights to those folders?
ASKER CERTIFIED SOLUTION
Avatar of Matt Minor
Matt Minor
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
you can use Subinacl utility to backup and restore NTFS permissions
The backup is nothing but permissions export dump in txt format, you can view it

Subinacl /noverbose <action parameter> /subdirectories <Directory path>

To backup NTFS permissions of root folder:
Subinacl /noverbose /output=C:\TFolders_Root.txt /subdirectories C:\TFolders
If folder contain spaces:
Subinacl /noverbose /output=C:\MyData_Root.txt /subdirectories "C:\My Data"

To backup NTFS permissions of all sub folders and files underneath root folder:
Subinacl /noverbose /output=C:\TFolders_Child.txt /subdirectories C:\TFolders\
If folder contain spaces:
Subinacl /noverbose /output=C:\MyData_Child.txt /subdirectories "C:\My Data\*"

Open in new window



Or

use NTFS Permissions Reporter - http://www.cjwdev.com/Software/NtfsReports/Info.html

OR

https://www.foldersizes.com/wordpress/index.php/2015/05/free-ntfs-permissions-reporter.htm
Avatar of LockDown32

ASKER

Thanks gents