powershelldiskpart

Using diskpart with PowerShell


When I use Diskpart within Powershell. I only get 11 characters from the Label. How can I access the full name?

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

The output looks like this:

Powershell output

which is not the full name:

Showing the full name of the disk


Solution

  • Get-WmiObject Win32_Volume 
    

    As per Ansgar Wiechers comment below.