Created
January 28, 2015 19:20
-
-
Save jbfriedrich/5cf01460e3910b0ec035 to your computer and use it in GitHub Desktop.
List VMs with Raw Device Mappings (RDMs) in VMware vSphere 5.x
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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