#GetOwnerReport $report="C:\OwnerReport.csv" $StartingDir=Read-Host "What directory do you want to start at?" Get-ChildItem $StartingDir -recurse |Get-Acl | select Path,Owner | Export-Csv $report -NoTypeInformation #send two beeps when report is finished write-Host `a `a `n"Report finished. See $report"