Removed timeout for choco upgrade

This commit is contained in:
Dan Franciscus
2019-05-01 14:58:28 -07:00
committed by GitHub
parent 7fb60db364
commit 7cbe967504

View File

@@ -50,7 +50,7 @@ function Invoke-BoxStarterRemoteUpgrade {
}
}
$Packages | ForEach-Object {
Add-Content $ScriptPath -Value "choco upgrade $_ -r -y --timeout=600"
Add-Content $ScriptPath -Value "choco upgrade $_ -r -y"
}
}
if (!$Parallel){
@@ -61,4 +61,4 @@ function Invoke-BoxStarterRemoteUpgrade {
start-process -RedirectStandardOutput C:\Windows\Temp\$_.txt -FilePath powershell -ArgumentList "-windowstyle hidden Install-BoxstarterPackage -ComputerName $_ -PackageName $ScriptPath" -PassThru
}
}
}
}