2022-01-20 15:59:37 +03:00
|
|
|
################################################################################
|
|
|
|
|
## File: Install-SQLOLEDBDriver.ps1
|
2023-11-16 11:20:11 +01:00
|
|
|
## Desc: Install OLE DB Driver for SQL Server
|
2022-01-20 15:59:37 +03:00
|
|
|
################################################################################
|
|
|
|
|
|
2023-11-22 15:14:08 +01:00
|
|
|
Install-Binary -Type MSI `
|
|
|
|
|
-Url "https://go.microsoft.com/fwlink/?linkid=2242656" `
|
|
|
|
|
-ExtraInstallArgs @("ADDLOCAL=ALL", "IACCEPTMSOLEDBSQLLICENSETERMS=YES") `
|
|
|
|
|
-ExpectedSignature '6E78B3DCE2998F6C2457C3E54DA90A01034916AE'
|