deployment: small fix to osquery utils Start-Process cmdlet (#3687)

This commit is contained in:
Nick Anderson 2017-09-12 13:56:31 -07:00 committed by GitHub
parent 1cfe9bb528
commit e252645d16

View File

@ -121,6 +121,7 @@ function Start-OsqueryProcess {
-FilePath $binaryPath `
-ArgumentList $buildArgs `
-NoNewWindow `
-Wait | Wait-Process
-PassThru
$out.WaitForExit()
return $out
}