Getting Remote Disk Space Including Mount Points Using PowerShell

tweaked from blogs.lessthandot.comĀ and edwinfriesen.nl get-wmiobject win32_volume -computer (Get-Content .\Servers.txt) | select SystemName, name, label, @{Name=”Capacity (GB)”;Expression={$_.Capacity/1GB}},@{Name=”FreeSpace (GB)”;Expression={$_.FreeSpace/1GB}},@{Name=”UsedSpace (GB)”;Expression={($_.Capacity-$_.FreeSpace)/1GB}} | Export-Csv

Continue readingGetting Remote Disk Space Including Mount Points Using PowerShell