powershell:desktopiniloeschen
desktop.ini in Unterordnern löschen
Script
$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 } } }
powershell/desktopiniloeschen.txt · Zuletzt geändert: 2016/04/02 00:48 von 127.0.0.1