Fixing typo in poweredOn string

This commit is contained in:
William Lam
2018-05-20 06:39:49 -07:00
parent 7c28fbc894
commit fb5c9e248a

View File

@@ -44,7 +44,7 @@
} }
# SourceVM must either be running or running but in Frozen State # SourceVM must either be running or running but in Frozen State
if($vm.PowerState -ne "PoweredOn") { if($vm.PowerState -ne "poweredOn") {
Write-Host -ForegroundColor Red "Instant Cloning is only supported on a PoweredOn or Frozen VM" Write-Host -ForegroundColor Red "Instant Cloning is only supported on a PoweredOn or Frozen VM"
break break
} }