andyturpie Posted October 4, 2010 Posted October 4, 2010 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!
fawkers Posted October 4, 2010 Posted October 4, 2010 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
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now