• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Checking permissions for multiple folders?

Chiefcrowe

Diamond Member
So I have a windows file server with a bunch of folders that all have unique security permissions.
Does anyone know of a way to see/list and also save the permissions lists so I can document them without going to each one's properties and taking a screen shot or something like that?

Thanks!
 
Powershell.

Get-ChildItem . | where {$_.PSiscontainer} | Get-Acl

Get-ChildItem . | where {$_.PSiscontainer} | Get-Acl | export-csv c:\myjunk.csv

--edit--

formatted a bit nicer:

Get-ChildItem . -recurse | where {$_.PSiscontainer} | Get-Acl | FL PSpath,accesstostring
 
Last edited:
Back
Top