====== desktop.ini in Unterordnern löschen ====== $a = get-childitem D:\User-Daten; foreach ($b in $a) { $c = get-childitem $b.FullName -force foreach ($d in $c) { if ($d.Name -eq "desktop.ini") { remove-item $d.fullname -force } } } {{tag>[Powershell]}}