Skip to content

Instantly share code, notes, and snippets.

@jbfriedrich
Created January 28, 2015 19:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jbfriedrich/5cf01460e3910b0ec035 to your computer and use it in GitHub Desktop.
Save jbfriedrich/5cf01460e3910b0ec035 to your computer and use it in GitHub Desktop.
List VMs with Raw Device Mappings (RDMs) in VMware vSphere 5.x
# LIst VMs with Raw Device Mappings (RMDs) in VMWare vSphere 5.x
# More info at VMware KB: http://kb.vmware.com/kb/2001823
Get-VM | Get-HardDisk -DiskType "RawPhysical","RawVirtual" | Select Parent,Name,DiskType,ScsiCanonicalName,DeviceName | fl
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment