Powershell script to delete all unnecessary files under the folders.
PS C:\User\admin\Get-ChildItem "d:\downloads" -recurse | where {$_.name -match "RARBG_DO_NOT_MIRROR.exe"} | % {remove-item $_.fullname -force}
Post a Comment
No comments:
Post a Comment