Merge pull request #5102 from tomassrnka/master

Fix catching "Start-VM" exceptions on Hyper-V during starting up VM
This commit is contained in:
Mitchell Hashimoto 2015-01-05 09:44:01 -08:00
commit 9ce626854d
1 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ forEach ($module in $modules) { . $module }
try { try {
$vm = Get-VM -Id $VmId -ErrorAction "stop" $vm = Get-VM -Id $VmId -ErrorAction "stop"
Start-VM $vm Start-VM $vm -ErrorAction "stop"
$state = $vm.state $state = $vm.state
$status = $vm.status $status = $vm.status
$name = $vm.name $name = $vm.name