$a = [System.IO.DriveInfo]::getdrives() $a | foreach { if ($_.DriveType -eq 'Fixed') { $_ }; }
powershell посмотреть место на локальных дисках
Ответить
$a = [System.IO.DriveInfo]::getdrives() $a | foreach { if ($_.DriveType -eq 'Fixed') { $_ }; }