州和州的可能值虚拟机的状态

时间:2017-06-19 06:19:08

标签: powershell virtual-machine hyper-v

我们可以使用powershell cmdlet" Get-VM"获取VM列表。返回的集合有两列" State"和"状态"。我需要知道VM的可能状态或状态。我有一个应用程序需要根据VM的状态(特别是错误状态)执行各种操作。

1 个答案:

答案 0 :(得分:4)

你可以使用powershell命令:

Import-Module Hyper-V

[enum]::GetNames([Microsoft.HyperV.Powershell.VMState])
[enum]::GetNames([Microsoft.HyperV.Powershell.VMOperationalStatus])

enter image description here