Skip to content

Commit 9d1c613

Browse files
Update and refactor SQLOLEDBDriver installer (#8553)
1 parent 3aa3daa commit 9d1c613

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

images/win/scripts/Installers/Install-SQLOLEDBDriver.ps1

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Desc: Install SQL OLEDB Driver
44
################################################################################
55

6-
$binaryDownloadPath = Start-DownloadWithRetry "https://go.microsoft.com/fwlink/?linkid=2183083" "msoledbsql.msi"
6+
$binaryDownloadPath = Start-DownloadWithRetry "https://go.microsoft.com/fwlink/?linkid=2242656" "msoledbsql.msi"
7+
$binarySignatureThumbprint = "6E78B3DCE2998F6C2457C3E54DA90A01034916AE"
78
$ArgumentList = ("/i", "$binaryDownloadPath", "ADDLOCAL=ALL", "IACCEPTMSOLEDBSQLLICENSETERMS=YES", "/qn")
8-
Install-Binary -FilePath msiexec.exe -ArgumentList $ArgumentList
9+
Install-Binary -FilePath $binaryDownloadPath -ArgumentList $ArgumentList -ExpectedSignature $binarySignatureThumbprint

0 commit comments

Comments
 (0)