How To Check Drive Size and Free Space Using PowerShell

preview_player
Показать описание
How To Check Drive Size and Free Space Using PowerShell
Рекомендации по теме
Комментарии
Автор

your script is not powerful yet


$driveinfo = Get-WMIobject win32_LogicalDisk -ComputerName $computers -filter "DriveType=3" |
Select-Object SystemName, DeviceID, VolumeName,

richievellalar