Jump to content

File Permissions Utiility


Recommended Posts

Guest csmith76
Posted

I hope this is in the correct group. We are looking for a utility that will

allow us to enter a domain user account and it will produce a report that

shows all folders that account has access to and what permissions that

account has on that folder. Can anyone assist? Thanks!

  • Replies 1
  • Created
  • Last Reply

Popular Days

Guest Pegasus \(MVP\)
Posted

Re: File Permissions Utiility

 

 

"csmith76" <csmith76@discussions.microsoft.com> wrote in message

news:88AD7634-B91D-4B52-8903-62CDB2DEDA1A@microsoft.com...

>I hope this is in the correct group. We are looking for a utility that

>will

> allow us to enter a domain user account and it will produce a report that

> shows all folders that account has access to and what permissions that

> account has on that folder. Can anyone assist? Thanks!

 

You could use this batch file:

@echo off

fileacl.exe "D:\User Data" /sub > c:\perm.tmp

findstr.exe /i "csmith76 Group1 Group2" c:\perm.tmp > c:\perm.txt

 

You need to include every group that the user is a member of.

 

You can get fileacl.exe from here:

http://www.microsoft.com/downloads/details.aspx?FamilyID=723f64ea-34f0-4e6d-9a72-004d35de4e64&displaylang=en


×
×
  • Create New...