Powershell File – NTFS Rechte auslesen

NTFS Rechte auslesen

Get-Acl -path “C:\Temp”

Get-Acl -path “C:\Temp” | Select -expand Access

Get-Acl C:\Windows\*.* | FL

Get-Acl C:\Windows\*.log | FT

Get-ChildItem “C:\Temp” -recurse |  where {$_.PsIsContainer -eq $false} | Get-Acl | FT

https://www.der-windows-papst.de/2016/05/27/powershell-file-shares-abfragen/