powershell remove files that's specific size code example
Example 1: how to delete a file using powershell
Remove-Item "path/filename.extension"
Example 2: powershell delete all files with specific extension in sub directories
Get-ChildItem * -Include *.csv -Recurse | Remove-Item