Eu não gosto muito das perguntas do tipo "me dê o código", mas aqui está uma dica do que você pode fazer:
$regularExpression = "(4[1-9][0-9]|500)eV$"
ls -rec -direc | ? {$_.fullname -match $regularExpression} | % { rm $_.fullname -force -recu -ErrorAction SilentlyContinue}
EDITAR: se você tem um antigo powershell
ls -rec| ? {$_.PSIsContainer} | ? {[Regex]::IsMatch($_.fullname, $regularExpression)} | % { rm $_.fullname -force -recu -ErrorAction SilentlyContinue}