Get UUID from VM? how
social.technet.microsoft.com › Forums › en-USMar 14, 2017 · 1. Sign in to vote. If you're talking about the BIOS UUID of the virtual machine, that is not exposed by Hyper-V Manager or the native PowerShell cmdlets. You must dig it out of WMI. Here's one way: get-vm "Win7" | % { (gwmi -Namespace root\virtualization\v2 -Class msvm_computersystem -Filter ('ElementName=" {0}"' -f $_.Name)).GetRelated('msvm ...