https://learn.microsoft.com/pt-br/shows/exam-readiness-zone/
Mês: janeiro 2023
PowerShell: Get Folder Sizes on Disk in Windows – ScriptPowerShell: Get Folder Sizes on Disk in Windows – Script
gci -force ‘C:\Users’-ErrorAction SilentlyContinue | ? { $_ -is [io.directoryinfo] } | % {$len = 0gci -recurse -force $_.fullname -ErrorAction SilentlyContinue | % { $len += $_.length }$_.fullname, ‘{0:N2} GB’