Fix catching "Start-VM" exceptions on Hyper-V during starting up VM
This commit is contained in:
parent
f9ce1cc4ca
commit
2620042c26
|
@ -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
|
||||
|
@ -24,4 +24,4 @@ try {
|
|||
}
|
||||
catch {
|
||||
Write-Error-Message "Failed to start a VM $_"
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue