Skip to content

Instantly share code, notes, and snippets.

@lingnet
Forked from atifaziz/Get-DiskFreeSpace.ps1
Created April 23, 2013 15:33
Show Gist options
  • Save lingnet/5444608 to your computer and use it in GitHub Desktop.
Save lingnet/5444608 to your computer and use it in GitHub Desktop.
Get-WmiObject Win32_LogicalDisk |
? { $_.DriveType -eq 3 } |
Select DeviceID,
@{ Name = 'FreeSpaceMB'; Expression = { $_.FreeSpace / 1MB } },
@{ Name = 'SizeMB'; Expression = { $_.Size / 1MB } },
@{ Name = 'FreeSpacePct'; Expression = { $_.FreeSpace / $_.Size } }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment