feat: SQL2008R2.NativeClient 10.50.1600.0

- 10.50.1600.2 because zippy1981 bungled the pushed packages
This commit is contained in:
Iristyle
2013-07-23 20:53:58 -04:00
parent 9137d9f777
commit f2503cab7a
3 changed files with 69 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
$package = 'SQL2008R2.NativeClient'
try {
$params = @{
packageName = $package;
fileType = 'msi';
silentArgs = ' /qb IACCEPTSQLNCLILICENSETERMS=YES';
url = 'http://download.microsoft.com/download/B/6/3/B63CAC7F-44BB-41FA-92A3-CBF71360F022/1033/x64/sqlncli.ms';
url64bit = 'http://download.microsoft.com/download/B/6/3/B63CAC7F-44BB-41FA-92A3-CBF71360F022/1033/x64/sqlncli.msi';
}
Install-ChocolateyPackage @params
Write-ChocolateySuccess $package
} catch {
Write-ChocolateyFailure $package "$($_.Exception.Message)"
throw
}