powershell
$folder = ".nt_streams"
$rootdir = "*root folder*"
$folders = gci $rootdir -recurse | where {$_.name -match $folder}
foreach($item in $folders){remove-item $item -force -whatif}
Remova o -whatif depois de executá-lo uma vez e confirme que ele está segmentando apenas o que você espera.