I am trying to get DISK SPACE (Windows) in Percentage used and free.
Script from which I get the space,
get-psdrive | where Free*
I am trying to get DISK SPACE (Windows) in Percentage used and free.
Script from which I get the space,
get-psdrive | where Free*
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) } }