Skip to content

Instantly share code, notes, and snippets.

@tomtorggler
Created October 13, 2016 19:56
Show Gist options
  • Save tomtorggler/61cc935c04425ef81e7bb8870e775d1e to your computer and use it in GitHub Desktop.
Save tomtorggler/61cc935c04425ef81e7bb8870e775d1e to your computer and use it in GitHub Desktop.
function Get-VmNestedHVStatus {
param($VM)
foreach ($item in $VM) {
try {
Get-VM $item -ErrorAction Stop | Select-Object -ExpandProperty extensiondata | Select-Object -ExpandProperty config | Select-Object Name,NestedHVEnabled
} catch {
Write-Warning -Message $_
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment