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
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