From e2f5d40a6b12a0c1e865cf4bffcdb8a44f396cf0 Mon Sep 17 00:00:00 2001 From: Don Schenck Date: Thu, 19 Jun 2014 13:15:01 -0500 Subject: [PATCH] Changed launch Using Start-Process --- examples/scripts/upgrade_to_ps3.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/scripts/upgrade_to_ps3.ps1 b/examples/scripts/upgrade_to_ps3.ps1 index 567dc7ba871..6604cd30b3c 100644 --- a/examples/scripts/upgrade_to_ps3.ps1 +++ b/examples/scripts/upgrade_to_ps3.ps1 @@ -78,5 +78,5 @@ else $FileName = $DownLoadUrl.Split('/')[-1] download-file $downloadurl "$powershellpath\$filename" -write-host "$powershellpath\$filename" -."$powershellpath\$filename" /quiet /log "C:\powershell\install.log" + +Start-Process -FilePath "$powershellpath\$filename" -ArgumentList /quiet, /log "C:\powershell\install.log"