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