Files
runner-images/images/windows/scripts/build/Install-SQLOLEDBDriver.ps1
2023-11-16 11:20:11 +01:00

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