Jump to content

Recommended Posts

Posted

Morning guys,

 

Just looking for a bit of advice. I am new to folder permissions and it seems until I get more hands on experience in configuring and applying its all a bit vague lol. Is there a bit of software preferrably freeware which can scan folders and collate all the permission data into a CSV file? I think by doing that it would make my understanding a bit easier.

 

Any advice gratefully recieved cheers in advance!

Posted

if you have powershell you can use

 

#per file
Get-Acl N:\Data\file.ext 
#for a Dir
Get-ChildItem N:\Data -recurse | Get-Acl
#dir to csv
Get-ChildItem N:\Data -recurse | Get-Acl | Export-csv c:\output.csv

 

hope this helps

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...