①Windows PowerShellで特定フォルダ配下のフォルダアクセス権をCSVに出力する
フォルダ[sales2]フォルダアクセス権を出力
cd C:\inetpub\wwwroot\sales2
#sales2アクセス権だけを出力
Get-Acl | Select-object @{Label="Path";Expression={Convert-Path $_.Path}}, Owner, AccessToString |Export-Csv C:\inetpub\wwwroot\output.csv
#sales2子フォルダのアクセス権も一緒に出力
Get-ChildItem -Force -Recurse |where { $_.mode -match "d" } |Get-Acl | Select-object @{Label="Path";Expression={Convert-Path $_.Path}}, Owner, AccessToString |Export-Csv C:\inetpub\wwwroot\output.csv