File and Folder Permission Summary

  • Thread starter Thread starter M P
  • Start date Start date
M

M P

Hi!

Is there a tool that I may use to summarize the assigned Access Control to
folders and subfolders? I have Windows 2000 Server that act as a file server
which I wanted to view the summary of permissions assigned including sub
folders.

MP
 
http://www.microsoft.com/downloads/...56-D8FE-4A91-93CF-ED6985E3927B&displaylang=en

--

Regards,

Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft Certified Professional
Microsoft MVP [Windows]
http://www.microsoft.com/protect

"M P"wrote:
| Hi!
|
| Is there a tool that I may use to summarize the assigned Access Control to
| folders and subfolders? I have Windows 2000 Server that act as a file
server
| which I wanted to view the summary of permissions assigned including sub
| folders.
|
| MP
|
|
 
thanks for the tool. I just notice that the tool is very complicated for me.
Can you help me do the syntax? What I need is to check file and folder
permissions (including subdirectory) for F:\Public and save it into file.

thanks

MP
 
There's a file that details usage and syntax.

\Program Files\Windows Resource Kits\Tools\subinacl.htm

--

Regards,

Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft Certified Professional
Microsoft MVP [Windows]
http://www.microsoft.com/protect

:
| thanks for the tool. I just notice that the tool is very complicated for
me.
| Can you help me do the syntax? What I need is to check file and folder
| permissions (including subdirectory) for F:\Public and save it into file.
|
| thanks
|
| MP
 
M P said:
Hi!

Is there a tool that I may use to summarize the assigned Access Control to
folders and subfolders? I have Windows 2000 Server that act as a file server
which I wanted to view the summary of permissions assigned including sub
folders.

MP

You could also run this batch file: It's written to compile the permission
structure of d:\Shares.

Line1 @echo off
Line2 echo %ComputerName% permission structure > c:\perms.txt
Line3 echo Snapshot taken on %date% at %time:~0,5% >> c:\perms.txt
Line4 echo ============================================= >> c:\perms.txt
Line5 dir /ad /b /s "d:\Shares" > c:\dir.txt
Line6 for /F "tokens=*" %%* in (c:\dir.txt) do (
Line7 echo Processing %%*
Line8 cacls "%%*" >> c:\perms.txt
Line9 )
Line10 del c:\dir.txt
 
Back
Top