Windows 10에서 폴더별 용량 확인

 Get-ChildItem | Where-Object { $_.PSIsContainer } | ForEach-Object { $_.Name + ": " + "{0:N2}" -f ((Get-ChildItem $_ -Recurse | Measure-Object Length -Sum -ErrorAction SilentlyContinue).Sum / 1MB) + " MB" }

 

PowerShell에서 cd 명령어로 확인하고 싶은 폴더의 경로로 이동 후 위 명령어 실행

 

출처: superuser.com