RIL_button( “http://sqlconcept.com/2012/02/23/disk-and-mount-points-space-and-properties/”, “Disk and mount points space and properties” );
Here is a piece of code which gives a good idea about the drives on your system, and also about the mountpoints.
gwmi -computername Enter_Server_Name win32_volume|where-object {$_.filesystem -match “ntfs”}|ft name,Availability,BlockSize,Compressed,DirtyBitSet,IndexingEnabled,Label,LastErrorCode,PowerManagementCapabilities,Status,@{Name=’CapacityMB’;Expression={$_.Capacity/1MB} },@{Name=’FreeSpaceMB’;Expression={$_.FreeSpace/1MB} }
Availability – describes the availability and the status of the device. (For example, Offline)
BlockSize – Size in
Continue reading [...] Disk and mount points space and properties [...]



