답변

0

이 시도 할 수 있습니다 : 이것은 더 많은 프로그래밍 문제보다 3 학년 수학 문제 같은 소리

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) } }