- You can get a list of hard disks the virtual machine has with the following one liner
- Get-VM | Get-HardDisk
- You can then limit this information to just the Raw Disk Mappings as follows:
- Get-VM | Get-HardDisk | Where {$_.DiskType –eq “RawPhysical”}
↧
Re: Adding multiple RDMs to a VM
↧