[windows] Add SQL OLEDB Driver 19 (#13127)

This commit is contained in:
Shamil Mubarakshin
2025-10-03 11:25:44 +02:00
committed by GitHub
parent 5641ff0eb6
commit de257bbc47
4 changed files with 20 additions and 3 deletions

View File

@@ -3,7 +3,14 @@
## Desc: Install OLE DB Driver for SQL Server
################################################################################
# Install OLE DB Driver 18
Install-Binary -Type MSI `
-Url "https://go.microsoft.com/fwlink/?linkid=2242656" `
-ExtraInstallArgs @("ADDLOCAL=ALL", "IACCEPTMSOLEDBSQLLICENSETERMS=YES") `
-ExpectedSubject $(Get-MicrosoftPublisher)
# Install OLE DB Driver 19
Install-Binary -Type MSI `
-Url "https://go.microsoft.com/fwlink/?linkid=2318101" `
-ExtraInstallArgs @("ADDLOCAL=ALL", "IACCEPTMSOLEDBSQLLICENSETERMS=YES") `
-ExpectedSubject $(Get-MicrosoftPublisher)