![]() |
![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() |
| Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks. |
| |||||||
![]() |
| |
| | #1 (permalink) |
| | determine folder size on DISK Hello, I use the following script to determine the size of a specific folder. Which argument can I use to view the size on disk? $colItems = (Get-ChildItem C:\Folder -recurse | Measure-Object -property length -sum) "{0:N2}" -f ($colItems.sum / 1MB) + " MB" best regards, JuergenN |
My System Specs![]() |
| | #2 (permalink) |
| | Re: determine folder size on DISK Hi Juergen, have a look at following thread: http://stackoverflow.com/questions/5...rom-powershell Martin |
My System Specs![]() |
| | #3 (permalink) |
| | Re: determine folder size on DISK "Martin Zugec" <martin.zugec@newsgroup> schrieb im Newsbeitrag news:ba90d96a-ac08-4449-8c1b-56f10ea529f4@newsgroup Quote: > Hi Juergen, > > have a look at following thread: > http://stackoverflow.com/questions/5...rom-powershell > > Martin thanks for the link but i don't use compressed files. Do you have an example script without compressed file info? best regards, Juergen |
My System Specs![]() |
| | #4 (permalink) |
| | Re: determine folder size on DISK Hi Juergen, that link is not about compressed files, by rather about GetPhysicalFileSize function. This function should give you size on the disk. Martin |
My System Specs![]() |
| | #5 (permalink) |
| | Re: determine folder size on DISK Hi, the following script works (for example with a cluster size of 4kb) $colItems = (Get-ChildItem c:\folder -recurse | foreach-object -process {[math]::Ceiling($_.length / 4096)} | Measure-Object -sum) "{0:N2}" -f ($colItems.sum * 4096 / 1MB) + " MB" best regards, Juergen N. |
My System Specs![]() |
![]() |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Forum | |||
| Using Process Manager to determine what is eating disk space | SBS Server | |||
| How to determine folder size | Vista General | |||
| disk size | Virtual Server | |||
| Folder Size in Size Column | Vista file management | |||
| Disk size | Vista General | |||