• D:\Temp 안의 파일 중 200KB 이하 파일 삭제하기
    gci D:\Temp\*|Where-Object -Filterscript{$_.length -lt 200KB}|Remove-Item -Force

  • D:\Temp 안의 tmp 확장자의 파일 중 200KB 이하 파일 삭제하기
    gci d:\Temp\* -include *.tmp|Where-Object -Filterscript{$_.length -lt 200KB}|Remove-Item -Force

참고사이트

https://iamaman.tistory.com/66

 

+ Recent posts