Skip to content

Commit

Permalink
Update and refactor SQLOLEDBDriver installer (#8553)
Browse files Browse the repository at this point in the history
  • Loading branch information
sergei-pyshnoi committed Oct 16, 2023
1 parent 3aa3daa commit 9d1c613
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions images/win/scripts/Installers/Install-SQLOLEDBDriver.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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
Install-Binary -FilePath $binaryDownloadPath -ArgumentList $ArgumentList -ExpectedSignature $binarySignatureThumbprint

0 comments on commit 9d1c613

Please sign in to comment.