Answers for "powershell list get size"

1

get folder size powershell

"{0} MB" -f ((Get-ChildItem C:users -Recurse | Measure-Object -Property Length -Sum -ErrorAction Stop).Sum / 1MB)
Posted by: Guest on May-11-2020
0

powershell array of size

PS> $arr = New-Object int[] 10000
PS> $arr.length
10000
Posted by: Guest on May-26-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language