Files
runner-images/images/win/scripts/Installers/Install-SQLOLEDBDriver.ps1
T

8 lines
520 B
PowerShell
Raw Normal View History

################################################################################
## File: Install-SQLOLEDBDriver.ps1
## Desc: Install SQL OLEDB Driver
################################################################################
$binaryDownloadPath = Start-DownloadWithRetry "https://go.microsoft.com/fwlink/?linkid=2183083" "msoledbsql.msi"
$ArgumentList = ("/i", "$binaryDownloadPath", "ADDLOCAL=ALL", "IACCEPTMSOLEDBSQLLICENSETERMS=YES", "/qn")
Install-Binary -FilePath msiexec.exe -ArgumentList $ArgumentList