mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 06:08:07 +00:00
11 lines
510 B
PowerShell
11 lines
510 B
PowerShell
####################################################################################
|
|
## File: Install-DACFx.ps1
|
|
## Desc: Install SQL Server® Data-Tier Application Framework (DACFx) for Windows
|
|
####################################################################################
|
|
|
|
Import-Module -Name ImageHelpers -Force
|
|
|
|
$exitcode = Install-MSI -MsiUrl "https://download.microsoft.com/download/f/1/9/f19eaee6-0728-4a0b-9755-9808acc8af0b/EN/x64/DacFramework.msi" -MsiName "DacFramework.msi"
|
|
|
|
exit $exitcode
|