====== Ordnerberechtigungen ermitteln ====== $a = get-childitem; foreach ($b in $a) { $c = get-acl $b.FullName; foreach($d in $c.access) { $b.Name + ";" + $d.IdentityReference + ";" + $d.FileSystemRights >> out.csv } } {{tag>[Powershell]}}