I'm using this code to get Path,VolumeLabel,TotalSize,FreeSpace:
gwmi -ComputerName $ComputerName -namespace root\MSCluster MSCluster_DiskPartition -Credential $cred -Authentication PacketPrivacy | Format-Table Path, VolumeLabel, TotalSize, FreeSpace -AutoSize
Output:
Path VolumeLabel TotalSize FreeSpace
---- ----------- --------- ---------
U: Archive1 4194184 379651
\\?\Volume{76795fb2-254e-454d-a95a-739018690cf4} Archive3 4194184 524883
X: Archive2 4194184 735366
\\?\Volume{57e93910-60f9-44b9-8d9d-29d506e1e3d7} Archive4 4194184 1483274
How I can get real path (or maybe drive name) of the mounting point from the Volume GUID ?
I try to use .GetRelated class but with no success. Can somebody help me with this?
MountPoints
property that is, however, not supported before Windows Server 2012. @ALIENQuake: have you tried getting theWin32_Volume
regardless and confirmed that it doesn't return information forMSCluster_DiskPartition
volumes? – Baiel