Files
runner-images/images/windows/scripts/build/Install-SQLOLEDBDriver.ps1
2025-10-03 11:25:44 +02:00

17 lines
732 B
PowerShell

################################################################################
## File: Install-SQLOLEDBDriver.ps1
## 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)