The default for wait is 1 second

This commit is contained in:
Taliesin Sisson 2015-11-04 21:45:37 +00:00
parent 8477a0b748
commit 07764c631e

View File

@ -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