-2

I am trying to get DISK SPACE (Windows) in Percentage used and free.

Script from which I get the space,

 get-psdrive | where Free*
icecool10
  • 41
  • 2
  • 11

1 Answers1

0

You can try this:

Get-WmiObject -Class win32_Logicaldisk -ComputerName localhost |  
where {($_.DriveType -eq 3 -or $_.DriveType -eq 2) -and $_.FileSystem -ne $null } |  
Select -Property 
@{Name = 'Volume';Expression = {$_.DeviceID -replace ":",""}}, 
@{Name = 'Free';Expression = { "{0:N0}%" -f (($_.FreeSpace/$_.Size) * 100) } }
Vladimir Bundalo
  • 645
  • 8
  • 18