From 07764c631e7f34f3221708134f8d930bd50f11c3 Mon Sep 17 00:00:00 2001 From: Taliesin Sisson Date: Wed, 4 Nov 2015 21:45:37 +0000 Subject: [PATCH] The default for wait is 1 second --- powershell/hyperv/hyperv.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/powershell/hyperv/hyperv.go b/powershell/hyperv/hyperv.go index e25ae9313..506f1a2c1 100644 --- a/powershell/hyperv/hyperv.go +++ b/powershell/hyperv/hyperv.go @@ -775,7 +775,7 @@ param([string]$vmName, [string]$scanCodes) if ($scanCode.StartsWith('wait')){ $timeToWait = $scanCode.Substring(4) if (!$timeToWait){ - $timeToWait = "10" + $timeToWait = "1" } Start-Sleep -s $timeToWait