mirror of
https://github.com/actions/runner-images.git
synced 2025-12-13 12:48:18 +00:00
10 lines
659 B
PowerShell
10 lines
659 B
PowerShell
################################################################################
|
|
## File: Install-SQLOLEDBDriver.ps1
|
|
## Desc: Install OLE DB Driver for SQL Server
|
|
################################################################################
|
|
|
|
$binaryDownloadPath = Start-DownloadWithRetry "https://go.microsoft.com/fwlink/?linkid=2242656" "msoledbsql.msi"
|
|
$binarySignatureThumbprint = "6E78B3DCE2998F6C2457C3E54DA90A01034916AE"
|
|
$ArgumentList = ("/i", "$binaryDownloadPath", "ADDLOCAL=ALL", "IACCEPTMSOLEDBSQLLICENSETERMS=YES", "/qn")
|
|
Install-Binary -FilePath $binaryDownloadPath -ArgumentList $ArgumentList -ExpectedSignature $binarySignatureThumbprint
|