在PowerShell中使用diskpart

时间:2019-01-23 13:28:42

标签: powershell

当我在Powershell中使用Diskpart时。我从Label中仅得到11个字符。如何获取全名?

$CusHost = "test-svr-101"
[string]$temp = Invoke-Command -Computername $CusHost -ScriptBlock {
    $dpscript = @"
list volume
"@;
    $dpscript | diskpart
}
$vols = $temp -split "\s(?=V)"

输出看起来像这样:

Powershell output

不是全名:

Showing the full name of the disk

2 个答案:

答案 0 :(得分:0)

您可以使用位于C:\ Windows \ system32中的DOS实用程序fsutil:

(fsutil fsinfo volumeinfo f:)[0]

答案 1 :(得分:0)

Get-WmiObject Win32_Volume 

根据下面的Ansgar Wiechers评论。