Files
runner-images-sangeeth/images/win/scripts/Installers/Install-DACFx.ps1
Drew Skwiers-Koballa 5fc40a670a update dacfx to 18.6
2020-09-25 14:25:08 -07:00

13 lines
538 B
PowerShell

####################################################################################
## File: Install-DACFx.ps1
## Desc: Install SQL Server® Data-Tier Application Framework (DACFx) for Windows
####################################################################################
Import-Module -Name ImageHelpers -Force
$InstallerName = "DacFramework.msi"
$InstallerUrl = "https://go.microsoft.com/fwlink/?linkid=2143544"
Install-Binary -Url $InstallerUrl -Name $InstallerName
Invoke-PesterTests -TestFile "Tools" -TestName "DACFx"