首页 > 代码库 > 遍历分区大小

遍历分区大小

Get-WmiObject -Class Win32_LogicalDisk -Filter "DriveType=3" |
Format-Table deviceid,
@{Label="free(GB)"; Expression={($_.freespace/1GB).tostring("f1")}},
@{Label="size(GB)"; Expression={($_.size/1GB).tostring("f1")}},
@{Label="percentage(%)";Expression={"{0:p}" -f($_.freespace/$_.size)}}-AutoSize

 

 get-psdrive -psprovider filesystem