mirror of
https://github.com/actions/runner-images.git
synced 2025-12-20 06:35:47 +00:00
* Use cerificate subject to verify authenticode signature * Use function instead of script variables * Switch all places to using Get-MicrosoftPublisher * Remove SignatureThumbprint * Use common subject for the Edge driver
10 lines
463 B
PowerShell
10 lines
463 B
PowerShell
################################################################################
|
|
## File: Install-SQLOLEDBDriver.ps1
|
|
## Desc: Install OLE DB Driver for SQL Server
|
|
################################################################################
|
|
|
|
Install-Binary -Type MSI `
|
|
-Url "https://go.microsoft.com/fwlink/?linkid=2242656" `
|
|
-ExtraInstallArgs @("ADDLOCAL=ALL", "IACCEPTMSOLEDBSQLLICENSETERMS=YES") `
|
|
-ExpectedSubject $(Get-MicrosoftPublisher)
|