From 25fabc3d1bd4fee7a145788cb5dd0047f2562421 Mon Sep 17 00:00:00 2001 From: "Dariy.Nurgaleev" Date: Fri, 20 Mar 2020 19:09:06 +0700 Subject: [PATCH] fix for installerPath --- images/win/scripts/Installers/Install-SQLExpress.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/images/win/scripts/Installers/Install-SQLExpress.ps1 b/images/win/scripts/Installers/Install-SQLExpress.ps1 index 8b40d921..12b8019a 100644 --- a/images/win/scripts/Installers/Install-SQLExpress.ps1 +++ b/images/win/scripts/Installers/Install-SQLExpress.ps1 @@ -67,5 +67,5 @@ $setupPath = Join-Path $downloadPath "SQLEXPR_x64_ENU" Set-Location -Path $downloadPath $installerPath = Start-DownloadWithRetry -Url "https://go.microsoft.com/fwlink/?linkid=866658" -Name "SQL2019-SSEI-Expr.exe" Download-FullSQLPackage -InstallerPath $installerPath -Unpack-SQLInstaller -InstallPath (Join-Path $setupPath ".exe") -Start-Installer -InstallPath (Join-Path $setupPath "SETUP.exe") \ No newline at end of file +Unpack-SQLInstaller -InstallPath "$setupPath.exe" +Start-Installer -InstallerPath "$setupPath\SETUP.exe" \ No newline at end of file