Question : Powershell script that enumerates folder permissions.

I need a Powershell script that will list who has what permissions to a folder and the sub-folders.
www.domain.com
                   folder1
                     folder2
                            etc


Answer : Powershell script that enumerates folder permissions.

Hi,
You can use the get-acl commandlet.

http://technet.microsoft.com/en-us/library/ee176838.aspx

ex: Get-ChildItem C:Data -recurse | Get-Acl | export-csv c:\filename.csv
 
-Hades666

Random Solutions  
 
programming4us programming4us