Merge pull request #5102 from tomassrnka/master
Fix catching "Start-VM" exceptions on Hyper-V during starting up VM
This commit is contained in:
commit
9ce626854d
|
@ -10,7 +10,7 @@ forEach ($module in $modules) { . $module }
|
|||
|
||||
try {
|
||||
$vm = Get-VM -Id $VmId -ErrorAction "stop"
|
||||
Start-VM $vm
|
||||
Start-VM $vm -ErrorAction "stop"
|
||||
$state = $vm.state
|
||||
$status = $vm.status
|
||||
$name = $vm.name
|
||||
|
|
Loading…
Reference in New Issue