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:
which is not the full name:
Get-WmiObject Win32_Volume
As per Ansgar Wiechers comment below.