diff --git a/images/win/scripts/Installers/Install-SQLOLEDBDriver.ps1 b/images/win/scripts/Installers/Install-SQLOLEDBDriver.ps1 index 93df7f526..503363b05 100644 --- a/images/win/scripts/Installers/Install-SQLOLEDBDriver.ps1 +++ b/images/win/scripts/Installers/Install-SQLOLEDBDriver.ps1 @@ -3,6 +3,7 @@ ## Desc: Install SQL OLEDB Driver ################################################################################ -$binaryDownloadPath = Start-DownloadWithRetry "https://go.microsoft.com/fwlink/?linkid=2183083" "msoledbsql.msi" +$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 msiexec.exe -ArgumentList $ArgumentList \ No newline at end of file +Install-Binary -FilePath $binaryDownloadPath -ArgumentList $ArgumentList -ExpectedSignature $binarySignatureThumbprint