mirror of
https://github.com/actions/runner-images.git
synced 2025-12-31 22:43:22 +08:00
114 lines
4.1 KiB
PowerShell
114 lines
4.1 KiB
PowerShell
################################################################################
|
|
## File: Install-SQLExpress.ps1
|
|
## Desc: Install SQL Express for Windows
|
|
################################################################################
|
|
|
|
function Download-FullSQLPackage {
|
|
param(
|
|
[String]$InstallerPath,
|
|
[String]$Arguments = ("/MEDIAPATH=$downloadPath", "/MEDIATYPE=Core","/Action=Download", "/QUIET")
|
|
)
|
|
$process = Start-Process -FilePath $InstallerPath -ArgumentList $Arguments -Wait -PassThru
|
|
$exitCode = $process.ExitCode
|
|
# Exit code -2067529716 is added since SQL Unpack procedure returns it on success.
|
|
if ($exitCode -eq 0)
|
|
{
|
|
Write-Host -Object "Full SQL Express package has been successfully downloaded to $InstallerPath : ExitCode: $exitCode"
|
|
}
|
|
else
|
|
{
|
|
Write-Host -Object "Full package downloading process was unsuccessful. Exit code: $exitCode."
|
|
exit $exitCode
|
|
}
|
|
}
|
|
|
|
function Unpack-SQLInstaller {
|
|
param(
|
|
[String]$InstallPath,
|
|
[String]$Arguments = ("/Q", "/IACCEPTSQLSERVERLICENSETERMS")
|
|
)
|
|
$process = Start-Process -FilePath $InstallPath -ArgumentList $Arguments -Wait -PassThru
|
|
$exitCode = $process.ExitCode
|
|
# Exit code -2067529716 is added since SQL Unpack procedure returns it on success.
|
|
if ($exitCode -eq 0 -or $exitCode -eq -2067529716)
|
|
{
|
|
Write-Host -Object "SQL installer unpacking has been completed."
|
|
}
|
|
else
|
|
{
|
|
Write-Host -Object "SQL installer unpacking was interrupted : $exitCode."
|
|
exit $exitCode
|
|
}
|
|
}
|
|
|
|
function Start-Installer {
|
|
param(
|
|
[String]$InstallPath,
|
|
[String]$Arguments = ("/Q", "/IACCEPTSQLSERVERLICENSETERMS", "/Action=Install", "/INSTANCEID=SQL2019", "/INSTANCENAME=SQL2019", "/SECURITYMODE=SQL", "/SAPWD=P@ssword!!", "/TCPENABLED=1")
|
|
)
|
|
$process = Start-Process -FilePath $InstallPath -ArgumentList $Arguments -Wait -PassThru
|
|
$exitCode = $process.ExitCode
|
|
# Exit code -2067529716 is added since SQL Unpack procedure returns it on success.
|
|
if ($exitCode -eq 0)
|
|
{
|
|
Write-Host -Object "SQL Express has been successfully installed: ExitCode: $exitCode"
|
|
}
|
|
else
|
|
{
|
|
Write-Host -Object "Installation procedure was not correctly completed. Exit code: $exitCode."
|
|
exit $exitCode
|
|
}
|
|
}
|
|
|
|
|
|
function Start-DownloadSQLExpress {
|
|
param(
|
|
[String]$InstallerUrl,
|
|
[String]$InstallerPath,
|
|
[int] $retries = 10
|
|
)
|
|
Write-Host "Downloading SQL Express web-installer from: $InstallerUrl"
|
|
# In case of any errors -try to download package several times
|
|
while($retries -gt 0)
|
|
{
|
|
try
|
|
{
|
|
Write-Host "Downloading SQL Express installer..."
|
|
(New-Object System.Net.WebClient).DownloadFile($InstallerUrl, $InstallerPath)
|
|
break
|
|
}
|
|
catch
|
|
{
|
|
Write-Host "There is an error during SQL Express downloading"
|
|
$_
|
|
|
|
$retries--
|
|
|
|
if ($retries -eq 0)
|
|
{
|
|
Write-Host "File can't be downloaded"
|
|
$_
|
|
exit 1
|
|
}
|
|
|
|
Write-Host "Waiting 30 seconds before retrying. Retries left: $retries"
|
|
Start-Sleep -Seconds 30
|
|
}
|
|
}
|
|
Write-Host "SQL Express has been successfully downladed from the link: $InstallerUrl"
|
|
}
|
|
#default variables for functions.
|
|
$installerUrl = "https://go.microsoft.com/fwlink/?linkid=866658"
|
|
$installerPath = "${env:Temp}\SQL2019-SSEI-Expr.exe"
|
|
$downloadPath = "C:\SQLEXPRESS2019"
|
|
$setupPath = Join-Path $downloadPath "SQLEXPR_x64_ENU"
|
|
#Set default location for proper script execution
|
|
Set-Location -Path $downloadPath
|
|
#Download installer for SQL Express
|
|
Start-DownloadSQLExpress -InstallerUrl $installerUrl -InstallerPath $installerPath
|
|
#Download full SQL Express package
|
|
Download-FullSQLPackage -InstallerPath $installerPath
|
|
#Unpack SQL Express Installer
|
|
Unpack-SQLInstaller -InstallPath "$setupPath.exe"
|
|
#Start SQL Express installer silently
|
|
Start-Installer -InstallPath "$setupPath/SETUP.exe" |