We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3aa3daa commit 9d1c613Copy full SHA for 9d1c613
images/win/scripts/Installers/Install-SQLOLEDBDriver.ps1
@@ -3,6 +3,7 @@
3
## Desc: Install SQL OLEDB Driver
4
################################################################################
5
6
-$binaryDownloadPath = Start-DownloadWithRetry "https://go.microsoft.com/fwlink/?linkid=2183083" "msoledbsql.msi"
+$binaryDownloadPath = Start-DownloadWithRetry "https://go.microsoft.com/fwlink/?linkid=2242656" "msoledbsql.msi"
7
+$binarySignatureThumbprint = "6E78B3DCE2998F6C2457C3E54DA90A01034916AE"
8
$ArgumentList = ("/i", "$binaryDownloadPath", "ADDLOCAL=ALL", "IACCEPTMSOLEDBSQLLICENSETERMS=YES", "/qn")
-Install-Binary -FilePath msiexec.exe -ArgumentList $ArgumentList
9
+Install-Binary -FilePath $binaryDownloadPath -ArgumentList $ArgumentList -ExpectedSignature $binarySignatureThumbprint
0 commit comments