From 9d1c61329a11dbc41c69dbde7ba7a1596cafe218 Mon Sep 17 00:00:00 2001 From: sergei-pyshnoi <121864472+sergei-pyshnoi@users.noreply.github.com> Date: Mon, 16 Oct 2023 17:03:27 +0200 Subject: [PATCH] Update and refactor SQLOLEDBDriver installer (#8553) --- images/win/scripts/Installers/Install-SQLOLEDBDriver.ps1 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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