Tool to list security permissions?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a tool (built in to windows or otherwise) that will list all the
permissions and folder access for a user account? I want to compare the
account settings on one machine to the settings on another machine to see
what's different?

Thanks,
 
You could pipe the output of cacls.exe from the command line to a file on
each system and then compare.
cacls *.* /t /c > filename.txt

t = for subdirectories
c = continue on errors (like the page file for instance)
 
Back
Top